Iweb Valet snow falling upload?????

Ok, I don't know if this is allowed, but I'm going to ask a very long question about iWeb Valet. I made a page in iWeb, I named the site and published to a folder. Now I have a folder with files. I want to add the falling snow to my homepage. How does that work??? I seriously have been trying "everything", but I can't figure it out?? Is there somebody that can explain me how I do that.

Bonjour
I don't know I don't use iWeb Valet.
But still the snow falls on [one of my page|http://iweb.debutersurmac.com/siteiweb/snow.html]. It's easy to do.
Put the [snowstorm.js|http://www.schillmania.com/projects/snowstorm> file to your server, get its URL.
paste in a HTML snippet widget this code:
<script language="JavaScript" type="text/javascript">
<!--
var headID = parent.document.getElementsByTagName("head")[0];
var headScript = parent.document.createElement('script');
headScript.type = 'text/javascript';
headScript.src = 'url/of/your/file/named/snowstorm.js';
headID.appendChild(headScript);
// -->
</script>
In this code replace url/of/your/file/named/snowstorm.js

Similar Messages

  • Iweb SEO tool or iweb valet

    Which is the best iweb SEO tool or iweb valet? or is there a alternative to these?
    I have used iweb SEO tool, itweak, RAGE Sitemap Automator, and upload my site http://www.southfarm.co.uk/home.html with Transmit. It is a pain when I have a small update to the site because I have to run all these extras.
    Is anybody working with Automator to add meta data, I use this to put in the code for google analytics.

    Hello Roddy,
    First of all: one of my motto's is: "live and let live"
    I have nothing whatsoever against you nor ragesw.
    Why should I ? I've never had the pleasure of meeting you nor him.
    So I don't like nor dislike you or him.
    My remarks are only on what you and/or he posted on this forum.
    In an effort to clear it out, here's a summary:
    MobileMe is for personal use, see the Terms of Use. (by Apple, not me)
    If you don't agree with Apple's Terms of Use and do want a commercial website with a lot of visitors and thus generate unwanted network load : please, go elsewhere !
    My father wants to download pictures of his granddaughter. When he wants to buy something over the internet he'll go to whatsoever website.
    About ragesw:
    I've used all his freeware for months, after reading all articles on his website and the articles on Google he is refering to himself + scanned the info about his freeware on Apple Downloads, Versiontracker, Cnet, etc.
    Before making a comment on his software, I've always made clear to all that it is only my own experience, in my own situation. I've never said in general that his software "stinks" nor "is great".
    My #1 issue with ragesw is :
    when I invite people to visit MY webite, my link states : visit MY website.
    when ragesw invites people to visit HIS website, his link states : visit THIS website, not MY website.
    So, IMHO, my very own personal conclusion is : he's hiding something. What ? Is it a lure to his paid software ? I do not know ! It is my personal 'gut' feeling as I've made clear to all.
    About you:
    Eh, I have nothing against you, I've never made any negative/disrespectful comment about you.
    So your post leaves me with one question : why do you react as if I 'attacked' you ?
    Kind regards,
    Leo

  • IWeb Valet question

    After publishing in a local folder and make changes using iWeb valet can you publish via Mobile me? I have a website and I want to improve some pictures and use e-mail disguises, etc. .. I can then publish again in my old Mobile Me the local folder or do I use FTP to another hosting company?

    Note that by doing this you will probably lose some iWeb features such as hit counter, blog and photo comments etc.
    As I wasn't impressed with this product, I didn't test it out thoroughly and therefore don't know if the input from iDisk work-around will fly with this application.
    15 minutes later...
    Ok - I just downloaded tried it and can't get it to connect to my iDisk. The connection input screen is for a server. Most applications geared towards iWeb have a button for simple upload to MobileMe.
    The designer needs to go back to the drawing board.
    You can" improve" your photos in many other and better ways and you can create aliases for your emails without having to use this application.

  • My iWeb image names are incompatible with FTP servers and must be renamed but I can't find the images in iWeb. I can upload to a desktop file and change them there but then I would need to download them to a new site in iWeb to publish them.

    my iWeb image names are incompatible with FTP servers and must be renamed but I can't find the images in iWeb. I can upload to a desktop file and change them there but then I would need to download them to a new site in iWeb to publish them. 
    What's the answer?
    Thanks 

    Many thanks to  responded to my question and sorry not to get back sooner.
    Yes, I discovered by this unfortunate experience that the names of photos are a serious issue if the site is to ever go to an FTP server.  Apple should discuss this carefully in their "manual".
    One more question:  I uploaded the website to a folder on my desktop. When I open it, unlike the photos in iWeb, there are folders for each page which have all the photos in them. I went through each folder and changed the names to be FTP compatible. I'm using iWeb SEO Tool which allows one to upload from this local folder to an FTP server but having trouble.
    Is this because there is an imbedment in iWeb that uses the old photo names to link to the actual photos and it can't find them because of the name changes?
    Thanks again for your help ...
    Phil McP

  • Snow falling: pls help with actionscript

    Hallo,
    I made a flash movie with snow  falling from the sky in Flash 8 (actionscript 2.0)
    However, the snow I made differs  from the original.
    The original is here:
    http://www.kirupa.com/developer/mx/snow.htm
    I  put mine here:
    http://toetssite.webs.com/
    You  will notice that my snow only falls downward: there is no randomness  for the flakes to go left or right. there is no movement.
    WHere  in the script below can I change that so that there's more movement for  the flakes? Thank you
    I use  the following script for the snow itself:
    onClipEvent (load) {
         //specifies the size of the movie stage
         movieWidth = 300;
         movieHeight = 200;
         //variables that will modify the falling snow
         i = 1+Math.random()*2;
         k = -Math.PI+Math.random()*Math.PI;
         //giving each snowflake unique characteristics
         this._xscale = this._yscale=50+Math.random()*100;
         this._alpha = 75+Math.random()*100;
         this._x = -10+Math.random()*movieWidth;
         this._y = -10+Math.random()*movieHeight;
    onClipEvent (enterFrame) {
         //putting it all together
         rad += (k/180)*Math.PI;
         this._x -= Math.cos(rad);
         this._y += i;
         if (this._y>=movieHeight) {
             this._y = -5;
         if ((this._x>=movieWidth) || (this._x<=0)) {
             this._x = -10+Math.random()*movieWidth;
             this._y = -5;
    and on the first frame of my movie I put the following:
    for (k=0; k<50; k++) {
        duplicateMovieClip(this.snow,  "snow"+k, k);
    Thank  you!

    Just initialize the rad variable. I added following line to your code and it works fine.
         rad = 0; //line I inserted.
    No other change required. It is advised to initialize all your variables before you use them.
    Anyways, below I am providing the whole script for the snow after modification
    onClipEvent (load) {
    //specifies the size of the movie stage
    movieWidth = 300;
    movieHeight = 200;
    rad = 0; //line I inserted.
    //variables that will modify the falling snow
    i = 1+Math.random()*2;
    k = -Math.PI+Math.random()*Math.PI;
    //giving each snowflake unique characteristics
    this._xscale = this._yscale=50+Math.random()*100;
    this._alpha = 75+Math.random()*100;
    this._x = -10+Math.random()*movieWidth;
    this._y = -10+Math.random()*movieHeight;
    onClipEvent (enterFrame) {
    //putting it all together
    rad += (k/180)*Math.PI;
    this._x -= Math.cos(rad);
    this._y += i;
    if (this._y>=movieHeight) {
    this._y = -5;
    if ((this._x>=movieWidth) || (this._x<=0)) {
    this._x = -10+Math.random()*movieWidth;
    this._y = -5;

  • Make snow fall inside a movieclip

    Hi,
    I have some code which makes snow fall perfectly, but I want it to only happen inside a movieclip (a snowglobe to be exact). Any ideas how I could make this happen?
    var speed:Number = 5;
    var total_snow:Number = 200;
    var snow_per_second:Number = 3
    var hit_target:MovieClip = gazing_mc
    var holder:Sprite = new Sprite();
    var target_shake:Boolean = false;
    addChild(holder);
    hit_target.mainX=hit_target.x;
    hit_target.mainY=hit_target.y;
    function createSnow() {
    var snow:MovieClip = new MovieClip();
    snow.graphics.beginFill(0xFFFFFF);
    snow.graphics.drawCircle(0,0,Math.random()*2);
    reset(snow);
    addBlur(snow);
    snow.addEventListener(Event.ENTER_FRAME,fall);
    holder.addChild(snow);
    function reset(s:MovieClip) {
    s.hit=s.shake=false;
    s.y=0;
    s.x=Math.random()*800;
    s.xspeed=Math.random()*speed-(speed/2);
    s.yspeed=Math.random()*speed+1;
    function init(e:Event) {
    for(var i=0; i<snow_per_second; i++) {
    createSnow();
    snow_id++;
    if(snow_id>total_snow) {
    removeEventListener(Event.ENTER_FRAME,init);
    function addBlur(s:MovieClip) {
    var blurX:Number = Math.random()*2+3;
    var blurY:Number = Math.random()*2+3;
    var filter:BitmapFilter = new BlurFilter(blurX, blurY, BitmapFilterQuality.LOW);
    var myFilters:Array = new Array();
    myFilters.push(filter);
    s.filters = myFilters;
    function fall(e:Event) {
    if (!e.target.hit) {
    e.target.x+=e.target.xspeed;
    e.target.y+=e.target.yspeed;
    if (e.target.y>600) {
    reset(MovieClip(e.target));
    if(!e.target.shake) {
    if (hit_target.hitTestPoint(e.target.x,e.target.y,true)) {
    e.target.hit=true;
    }else{
    if(target_shake) {
    e.target.hit=false
    e.target.shake=true;
    function shake_int(e:TimerEvent) {
    hit_target.x=hit_target.mainX+Math.random()*5-2.5;
    hit_target.y=hit_target.mainY+Math.random()*5-2.5;
    var shake_timer:Timer = new Timer(2,100);
    shake_timer.addEventListener(TimerEvent.TIMER,shake_int);
    shake_timer.addEventListener(TimerEvent.TIMER_COMPLETE,shake_fnish);
    function shake_fnish(e:TimerEvent) {
    target_shake=false;
    hit_target.addEventListener(MouseEvent.CLICK,shake_start);
    function shake_start(e:Event) {
    target_shake=true;
    shake_timer.reset();
    shake_timer.start();
    var snow_id:int = 0
    addEventListener(Event.ENTER_FRAME,init);

    I'm not sure how to do this? the code I got was from a source file off the internet and I'm a newbie and actionscript...which part of the code is the holder?

  • Snow fall widget for my site at Christmas.

    Hello,
    This is my first visit to the Apple Forum.
    I'd really like to insert some falling snow on my welcome page for Christmas, but I haven't quite been able to figure out how it's down, so far all the options that I've seen seem to be set-up only to work for the PC!! Help and advice would be welcome, I should add I don't have any HTML knowledge.
    http://web.me.com/chrisantjoule

    The code is a very old javascript file that you could add as an html "snippet" in the body tag of your page code.
    You would also have to "borrow" the 6 image files, edit the code below to to "point" to the new URL on your server and upload them.
    Not for the faint of heart but very doable.
    <SCRIPT type="text/javascript">
    grphcs=new Array(6)
    Image0=new Image();
    Image0.src=grphcs[0]="snow1.gif";
    Image1=new Image();
    Image1.src=grphcs[1]="snow2.gif"
    Image2=new Image();
    Image2.src=grphcs[2]="snow3.gif"
    Image3=new Image();
    Image3.src=grphcs[3]="snow4.gif"
    Image4=new Image();
    Image4.src=grphcs[4]="snow5.gif"
    Image5=new Image();
    Image5.src=grphcs[5]="snow6.gif"
    Amount=25;
    Ypos=new Array();
    Xpos=new Array();
    Speed=new Array();
    Step=new Array();
    Cstep=new Array();
    ns=(document.layers)?1:0;
    ns6=(document.getElementById&&!document.all)?1:0;
    if (ns){
    for (i = 0; i < Amount; i++){
    var P=Math.floor(Math.random()*grphcs.length);
    rndPic=grphcs[P];
    document.write("<LAYER NAME='sn"i"' LEFT=0 TOP=0><img src="rndPic"></LAYER>");
    else{
    document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
    for (i = 0; i < Amount; i++){
    var P=Math.floor(Math.random()*grphcs.length);
    rndPic=grphcs[P];
    document.write('<img id="si'i'" src="'rndPic'" style="position:absolute;top:0px;left:0px">');
    document.write('</div></div>');
    WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
    WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
    for (i=0; i < Amount; i++){
    Ypos = Math.round(Math.random()*WinHeight);
    Xpos = Math.round(Math.random()*WinWidth);
    Speed= Math.random()*5+3;
    Cstep=0;
    Step=Math.random()*0.1+0.05;
    function fall(){
    var WinHeight=(ns||ns6)?window.innerHeight:window.document.body.clientHeight;
    var WinWidth=(ns||ns6)?window.innerWidth-70:window.document.body.clientWidth;
    var hscrll=(ns||ns6)?window.pageYOffset:document.body.scrollTop;
    var wscrll=(ns||ns6)?window.pageXOffset:document.body.scrollLeft;
    for (i=0; i < Amount; i++){
    sy = SpeedMath.sin(90Math.PI/180);
    sx = Speed*Math.cos(Cstep);
    Ypos+=sy;
    Xpos+=sx;
    if (Ypos > WinHeight){
    Ypos=-60;
    Xpos=Math.round(Math.random()*WinWidth);
    Speed=Math.random()*5+3;
    if (ns){
    document.layers['sn'+i].left=Xpos;
    document.layers['sn'i].top=Yposhscrll;
    else if (ns6){
    document.getElementById("si"+i).style.left=Math.min(WinWidth,Xpos);
    document.getElementById("si"i).style.top=Yposhscrll;
    else{
    eval("document.all.si"+i).style.left=Xpos;
    eval("document.all.si"i).style.top=Yposhscrll;
    Cstep+=Step;
    setTimeout('fall()',115);
    window.onload=fall
    //-->
    </SCRIPT>

  • IWeb and Quicktime Movie Upload 2013

    Three or so years ago, I made a website using iWeb (the last version Apple produced; i.e. the current version), and I included some videos. The videos were from a digital (tape) video camera, edited with iMovie HD, and were old-format 640x480. I managed to work out how to set the movies to start quickly (before fully loading) using iMovie and QuickTime. I dropped the movie into a regular iWeb page, resized it, put the settings up with the iWeb inspector, and all was well. The movies played (and still play) on Safari and Firefox, on my Macs and on an Asus Windows machine I have. (They won't play on my iPad - if anyone can tell me why, I'd be grateful; I'll probably put the original DV through a more recent version of iMovie and QT, and upload again.)
    I want to make another similar website. However, my camera is now a HD tape model, and I have made my peace with iMovie '11 and worked out how to use it. My machine is the latest Mac Mini, and so QT is the latest also. I run Mountain Lion.
    I made a movie with iMovie '11, and exported a quality version. I opened it in QT and chose 'Export for Web' and selected the option which gives me three different sizes. After some struggles, I worked out how to put this into my uploaded iWeb (test) site (although I have to say that the instructions Apple's QT gives are not the clearest), and it works, even on my iPad.
    My questions concern the code which QT says you should upload. The code in the <body>, I understand, and it's obviously necessary to play the movie.
    But about the <head> tag QT says:
    Please note, to properly validate as XHTML, the <style> tag and the first <script> tag should be placed within your page's <head> tag.
    Here's the code QT says to paste into the <head>
    <script src="scripts/prototype.js" language="JavaScript" type="text/javascript"></script>
    <script src="scripts/qtp_poster.js" language="JavaScript" type="text/javascript"></script>
    <link href="stylesheets/qtp_poster.css" rel="StyleSheet" type="text/css" />
    However, the movie playback still seems to work without uploading the code for the <head> of the page.  And there is NO <style> tag, and why only the FIRST <script> tag?
    The <head> on the page iWeb produces for my test page already has a lot of code:
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="Generator" content="iWeb 3.0.4" />
        <meta name="iWeb-Build" content="local-build-20130116" />
        <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
        <meta name="viewport" content="width=950" />
        <title>Ed's Video Test</title>
        <link rel="stylesheet" type="text/css" media="screen,print" href="Eds_Video_Test_files/Eds_Video_Test.css" />
        <!--[if lt IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='Eds_Video_Test_files/Eds_Video_TestIE.css'/><![endif]-->
        <!--[if gte IE 8]><link rel='stylesheet' type='text/css' media='screen,print' href='Media/IE8.css'/><![endif]-->
        <style type="text/css">
    /*<![CDATA[*/
        @import "Scripts/Widgets/HTMLRegion/Paste.css";
    /*]]>*/
    </style>
        <script type="text/javascript" src="Scripts/iWebSite.js"></script>
        <script type="text/javascript" src="Scripts/iWebImage.js"></script>
        <script type="text/javascript" src="Scripts/iWebMediaGrid.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/SharedResources/WidgetCommon.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/HTMLRegion/Paste.js"></script>
        <script type="text/javascript" src="Eds_Video_Test_files/Eds_Video_Test.js"></script>
      </head>
    Questions:
    1. Should I put the QT code in the <head> tag anyway, even though it seems to work without it?
    2. If I don't put it in, does that mean the choice between the three movies doesn't take place? I don't have a smartphone, but the playback on my 27" screen, my Asus netbook, and on my iPad all look fine without the head code.
    3. If I do put it in, where exactly do I put it, and do I need to replace any of the code that is already there?
    4. The original iWeb drag and drop method still seems to work fine with movies direct from iMovie (and plays even on my iPad), but obviously you can only put one version of the movie on a page. Is there still a good reason for using the multi-size version which involves manually uploading the movie and opening the page after uploading and inserting code for every movie? For example, I have a very fast internet connection. Maybe it's kind to those with a slower connection to put up the smaller movies also?
    And, since I'm here, I have a couple of slightly related questions:
    5. I designed my site (it's non-commercial, just a trip report, but with a lot of pages) to not need any scrolling even on quite a small desktop screen (you click on from page to page like a book, but you can also navigate around sections more easily this way; anyway that's how I like it). But on the iPad, held horizontally, the width is resized to take up the full width of the sceen, so you then need to scroll down. It's really annoying me. Is there some code I could put in to tell the iPad not to do this (there are plenty fewer vertical pixels on my website's pages than on the iPad screen)? (I don't care about phones, because the site is photo-based so looking at it on a phone is pointless in my opinion. And netbooks with only 768 vertical pixels are not particularly important to me either, but the iPad screen is plenty big enough for the site to work the way I want it to.)
    6. And I want to include slideshows of photos without using the iWeb/iPhoto system (which brings up an external window in a different colour). I want the user to be able to see the thumbnails, to start and stop an on-page slideshow, and for me to be able to put captions (descriptions) with the slides. There seem to be a lot of options, and I still haven't finished looking at all the ones I got from the web. But does anyone have a good recommendation - paid or free?
    Thanks for reading this long thread, and for any advice.

    See the second method described on this page for how to add the code to an HTML Snippet...
    http://www.iwebformusicians.com/Website-Movie-Video/Poster-Movie.html
    The prefered method of playing movies on websites is to use an HTML5 player with flash fallback for older browsers. Using this method, you can get away with only one video file - an MP4.
    In this section of iWeb for Musicians you can see examples of several different types of flash fallback players...
    http://www.iwebformusicians.com/Website-Movie-Video/Poster-Movie.html
    The latest version of flowplayer has all the features that I want in a player and allows several movies on a page by loading only the poster image. It has the added advantage of turning off one player when another is selected...
    http://www.iwebformusicians.com/Website-Movie-Video/Flow-Player-5-2.html
    iWeb uses a fixed width page so it is not possible to use it to create a page that will respond to different browser widths. You need to create a version of your site to suit each type of device or use a responsive design like this...
    http://www.ezmacwebdesign.com/responsive-sidebar/
    As far as slideshows are concerned there are just so many of them. See this section of iWeb for Musicians for examples...
    http://www.iwebformusicians.com/Banner-Slideshow/Slideshow-Showcase.html
    Some more examples using iWeb....
    http://www.iwebformusicians.com/iweb-snippets/gallery.html
    http://www.iwebformusicians.com/iweb-snippets/slider.html
    An example of a dual slideshow with a separate window for the image and the caption...
    http://www.iwebformusicians.com/iweb-snippets/map-tutorial.html
    Finer swiping for mobile devices...
    http://www.iwebformusicians.com/iweb-snippets/swipe.html
    A modern slider that uses no javascript and makes use of the new(ish) CSS transitions...
    http://www.iwebformusicians.com/iweb-snippets/flux.html
    Shadowbox is a very versatile version of the Lightbox style...
    http://ezmacwebdesign.com/Demo/shadowbox/shadowbox.html
    ... and can be used as a standalone or along with jQuery, Mootools etc...
    http://ezmacwebdesign.com/Demo/shadowbox/shadowbox.html

  • Iweb 3.0.3 upload issue

    Hi Guys, I have tried to upload iweb to mobile me since last night. But I always got the " an unknown error occurred" response. Does anyone know how to fix this problem?

    Larry ~ Welcome to the discussions. That error is mentioned in this Apple doc:
    MobileMe: Troubleshooting iWeb publishing issues
    ...Found by searching here:
    http://support.apple.com/kb/index?page=search
    If no luck with the suggestions there, MobileMe live chat support is now 24/7 — see this announcement.

  • IWeb + MobileMe + Snow Leopard = any observations?

    Hi,
    Haven't picked up Snow Leopard yet but curious if anyone who uses iWeb 09 and MobileMe for hosting and has installed Snow Leopard if you've seen any improvements or issues. Thanks.
    Steve

    G2A2 wrote:
    And I'm really not sure how to resolve it....
    G2A2 ~ Welcome to the discussions. Me neither, but you can validate your fonts to see how many have warnings or errors:
    Applications folder > Font Book > Edit menu > Select All > File menu > Validate Fonts. See more in this Apple doc:
    _Font Book 2.0 Help - Validating fonts_
    +"A lot of problems can be solved simply by..."+ Read more in the "Fix iWeb" section here:
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    That article mentions deleting iWeb's preference file — as does THIS article:
    "...you can find the preference file, "com.apple.FontBook.plist", and move it to your desktop. This will force FontBook to create a new preference file when you quit and restart the program."
    ...But I haven't tried that myself. If you try anything like the above, make sure you have a bootable clone backup first:
    http://www.shirt-pocket.com/SuperDuper

  • Index problems with iweb 09 and ftp uploads

    Hi,
    after several issues with the site i eventually re-built and published with iweb 09's built in ftp.
    The problem i have is that the published site goes in a folder called Site on my server but the index page that redirects to the welcome.html file doesn't direct it to inside the site folder. This means when i navigate to the site it comes up as welcome.html not found on this server.
    I've resorted to filezilla again as when i publish to a local folder and upload it works ok.
    I still want to resolve this as the iweb ftp will publish just the canges so is loads quicker.
    I imagine the only way to resolve this is to change the settings in the iweb site settings page.
    does anyone know if i need to tell iweb a different path other than the server url.
    EG; my url is www.thepaddyproject.co.uk
    iweb put the site on the server ok (www.thepaddyproject.co.uk/Site
    the index page needs to redirect to www.thepaddyproject.co.uk/Site/Welcome.html
    any help appreciated
    Paul

    Posted by me in error.

  • Iweb Seo Tool not uploading last updated file

    Hello,
    I am using the Iweb Seo Tool to put title tags, google analicts...I have used it and it works, it updated me the data the first time.
    But now I was doing some changes in the Iweb adding things, changing others....and I saved the changes in Local, then open Iweb Seo Tool press Re-Apply save tags, go to publish, try to upload through FTP like I did before and press browse go to the file CK_Translations try to get the last file updated (it should appear saturday 13:04 file changed) and it doesn't.
    http://picasaweb.google.com/carlinhosiro/IwebSeoToolErrorUploading#5541600955239 467618
    Like you can see in the printscreen the exact date for last update (what the programm say) is jueves 18 Noviembre de 2010 a 10:50, but this is wrong is not real, I just change the file in Iweb save it in local and it should appear saturday 20 Noviembre de 2010 a 13:06....something is wrong, and it is not updating me the last version???
    Why?
    Can anybody help here.
    THANKS A LOT.

    Did you check the files in the folder to see if the files modified has the correct dates? I've had folders with one date and the files inside with newer. That might be the case here.
    Also you might try using a 3rd party FTP client like the free Cyberduck to upload the files. It can be setup to upload just the new or modified files if the steps in this tutorial are followed: Old Toad's Tutorial #2 - Uploading only those published new or newly edited files when using a 3rd party FTP client.
    OT

  • IWeb 09 + Snow Leopard = Character Spacing / Tracking Disaster!

    I have a big problem. Upgraded to Snow Leopard, all went fine... but now much of the text in my iWeb 09 pages are all bunched on top of each other, where they looked fine before. This is primarily a problem with title text, and happens with all new text as well. It seems like at a standard size font, the letters are just a little too close together. But as you increase the size of the font... the letters do not get any more space between them, so the larger titles look like just a pile of letters on top of each other, and are completely and 100% unreadable.
    I have tried using the "Character Spacing" slider in Inspector and it literally does nothing, I have tried using the "Loosen Tracking" option in the Format\Font menu and it similarly does nothing at all. I have tried switching fonts and have tried starting new text boxes, and nothing has any effect whatsoever.
    I cannot update any of my sites until this gets resolved. Can anybody help?
    Screenshot here: http://img22.yfrog.com/i/exampletrackingproblemi.tif/

    Try quitting iWeb. deleting the preference file - Home Folder/Library/Preferences/com.apple.iWeb.plist, restarting your Mac, running Disk Utility to repair permissions and then relaunching the application.
    iWeb troubleshooting is covered here.....
    http://www.iwebformusicians.com/WebMusic/iWebTips.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • How to publish from iweb using snow leopard

    Hi,
    Having had my iMac for some 4.5 years I finally have a real reason to use iweb and now can't work out how to publish from it.
    I only have a mobile me option come up when I click the publish option. My mobile me account was deactivated some time ago and reactivation is not an option. I can't see any other option for publishing. Is there one or have I missed my chance?
    Has anybody faced the same problem and found a solution?
    Thanks,

    What version of iWeb are you using?  iWeb 09 or 08? 
    If using 08, then you'll need to select publish to a local folder and use Cyberduck or FileZilla or Transmit to upload your site to another server.
    If using iWeb 09, then select your site name and a drop down menu should appear that has 3 options - publish to MobileMe, publish to ftp and then publish to a local folder.  You either need to select publish to ftp or local folder to upload your site to another sever.  This is what you will need to do anyway come the end of June when MME will be no longer.
    Find a new host now.

  • IWeb and Snow Leopard

    After a few months of not using the app, I tried to launch iWeb and it is hung up on "Opening" - where I have to Force Quit since the app won't respond. I have an older version (1.1.2) and have upgraded to Snow Leopard (10.6.2) since I last used the app.
    I have tried a suggestion by Old Toad to delete com.apple.iWeb.plist file and try again, but this did not resolve the issue.
    Any help is appreciated. Thanks.

    JB88 wrote:
    ...and have upgraded to Snow Leopard (10.6.2) since I last used the app.
    This Apple doc may help:
    iWeb & iWork: Applications may suddenly quit after updating to Mac OS X v10.6.2

Maybe you are looking for