IPad3 Photo Album Issue

Hi, Just got an iPad3, It's fantastic but I have just been uploading photos on to it and come in to a problem, after importing all the photos I selected, and adding them to folders I had created, I realised that I had an extra two albums, last imported & all imported. I can not delete these albums, I thought that I would be able to simply upload photos from my camera, and put the selected photos in to individual albums that I create. I didn't think I would be stuck with an additional two albums full of photos, that will presumably grow larger and larger every time I put new photos on. It seems like a terrible waste of space as for every one photo I upload, there is another two copies in the last and all import folders. When in the last or all import folder, and attempting to delete a photo, I am told that the photo exists in multiple albums, do I want to delete that particular photo in all of them. Why is there not an option to say 'No' ? any help would be greatly appreciated as I need it. I'm obviously not doing something write. Many thanks

The albums that you create on the iPad do not actually contain copies of the photos from those two albums. The iPad created albums contain pointers to the photos - that must still be stored in the those other albums. If you delete the photos from the "parent" folders, they will be removed from all of the albums that you create, because the photos are not really stored in you iPad created albums.
The albums that you create in the photos app are locally stored albums that simply let you arrange your photos in a way that you want to group them.

Similar Messages

  • IPhone photo albums issues

    So I have an issue. All the .gif files I have on my computer that I upload to my phone via iTunes (syncing photo albums) are magically converted to .jpg files. This is incredibly annoying because I want them to be animated when I email or text them. Is there a way to fix his, or perhaps use an SSH program to manually create photo albums on the iPhone?
    Thanks in advance
        ~Nate

    Right... But I definitely dont want to do that for 90+ images.
    Besides I dont want them in the normal camera roll. I want them in a separate album

  • Photo Album issue

    I recently synced my iPhone 4 to a new computer, after completion, the thumbnails were blacked out. I could click at random and the pictures would show up(I could scroll through them fine as well). Also, new pictures I have taken, thumbnails were there and not blacked out.

    Is this for photos that were transferred from your computer via the iTunes sync process which are stored in your iPhone's Photo Library, or for photos in your iPhone's Camera Roll only which stores photos that were captured by your iPhone and any photos saved from a received email, from a website, or from a received MMS?
    If the latter, the iPhone's Camera Roll is not included with the iTunes sync process except for being included with your iPhone's backup which is updated as the first step during the iTunes sync process.

  • Photos receiving from friends by emails cannot be saved to my iPad3 photo or albums. I click " save.... photos", but they never go to photo album. Any suggestion, please.

    I receive attached photos by email from other friends. I open photos in my  new iPad3, and I go to " save photos". But no photos go to my iPad3 photo albums. Any suggestion, please.

    Have a look at Photos>Albums>Camera Roll

  • CS5 Advanced Photo Album Template Upload Issue

    I just created a new flash ap from the template Advanced Photo Album (File->new->Templates->Media Playback->Advanced Photo Album)
    I set everything up put my photos where they needed to be and coded the xml section of the action script.  I tested it and it runs perfectly on my system.  However as soon as I upload it to my server I get the flash app to load but no images appear.  Its as if it can't find the xml file however its hardcoded into the flash app.  How can I fix this?
    Help would be greatly appreciated
    Thanks
    Stjc
    Ps all images are in the same directory as the swf and index.html files just as they were on my local machine
    Link to non working app page
    Link to non working swf
    AS Code
    import fl.data.DataProvider;
    import fl.events.ListEvent;
    import fl.transitions.*;
    import fl.controls.*;
    // USER CONFIG SETTINGS =====
    var secondsDelay:Number = 4;
    var autoStart:Boolean = true;
    var transitionOn:Boolean = true; // true, false
    var transitionType:String = "Fade"; // Blinds, Fade, Fly, Iris, Photo, PixelDissolve, Rotate, Squeeze, Wipe, Zoom, Random
    var hardcodedXML:String="<photos><image title='Exterior 1'>010.jpg</image><image title='Exterior 2'>012.jpg</image><image title='Exterior 3'>013.jpg</image><image title='Exterior 4'>014.jpg</image><image title='Exterior 5'>015.jpg</image><image title='Exterior 6'>016.jpg</image><image title='Exterior 7'>017.jpg</image><image title='Exterior 8'>018.jpg</image><image title='Kitchen 1'>019.jpg</image><image title='Kitchen 2'>020.jpg</image><image title='Kitchen 3'>031.jpg</image><image title='Dining Room 1'>021.jpg</image><image title='Dining Room 2'>022.jpg</image><image title='Basement 1'>027.jpg</image><image title='Basement 2'>028.jpg</image><image title='Great Room 1'>032.jpg</image><image title='Great Room 2'>033.jpg</image><image title='Bed Rooms 1'>034.jpg</image><image title='Bed Rooms 2'>035.jpg</image><image title='Bed Rooms 3'>036.jpg</image><image title='Bed Rooms 4'>037.jpg</image><image title='Bed Rooms 5'>038.jpg</image><image title='Bed Rooms 6'>039.jpg</image><image title='Bed Rooms 7'>040.jpg</image><image title='Bed Rooms 8'>042.jpg</image><image title='Bed Rooms 9'>043.jpg</image><image title='Bed Rooms 10'>044.jpg</image><image title='Interior 1'>041.jpg</image><image title='Interior 2'>046.jpg</image></photos>";
    // END USER CONFIG SETTINGS
    // DECLARE VARIABLES AND OBJECTS =====
    var imageList:XML = new XML();
    var currentImageID:Number = 0;
    var imageDP:DataProvider = new DataProvider();
    var slideshowTimer:Timer = new Timer((secondsDelay*1000), 0);
    // END DECLARATIONS
    // CODE FOR HARDCODED XML =====
    imageList = XML(hardcodedXML);
    fl_parseImageXML(imageList);
    // END CODE FOR HARDCODED XML
    // EVENTS =====
    imageTiles.addEventListener(ListEvent.ITEM_CLICK, fl_tileClickHandler);
    function fl_tileClickHandler(evt:ListEvent):void
    imageHolder.imageLoader.source = evt.item.source;
    currentImageID = evt.item.imgID;
    title_txt.text = imageDP.getItemAt(currentImageID).label;
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    function fl_togglePlayPause(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "play")
      fl_startSlideShow();
      playPauseToggle_mc.gotoAndStop("pause");
    else if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    function fl_nextButtonClick(evt:MouseEvent):void
    fl_nextSlide();
    function fl_prevButtonClick(evt:MouseEvent):void
    fl_prevSlide();
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    function fl_slideShowNext(evt:TimerEvent):void
    fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC =====
    function fl_parseImageXML(imageXML:XML):void
    var imagesNodes:XMLList = imageXML.children();
    for(var i in imagesNodes)
      var imgURL:String = imagesNodes[i];
      var imgTitle:String = imagesNodes[i].attribute("title");
      imageDP.addItem({label:imgTitle, source:imgURL, imgID:i});
    imageTiles.dataProvider = imageDP;
    imageHolder.imageLoader.source = imageDP.getItemAt(currentImageID).source;
    title_txt.text = imageDP.getItemAt(currentImageID).label;
    function fl_startSlideShow():void
    slideshowTimer.start();
    function fl_pauseSlideShow():void
    slideshowTimer.stop();
    function fl_nextSlide():void
    currentImageID++;
    if(currentImageID >= imageDP.length)
      currentImageID = 0;
    if(transitionOn == true)
      fl_doTransition();
    imageHolder.imageLoader.source = imageDP.getItemAt(currentImageID).source;
    title_txt.text = imageDP.getItemAt(currentImageID).label;
    function fl_prevSlide():void
    currentImageID--;
    if(currentImageID < 0)
      currentImageID = imageDP.length-1;
    if(transitionOn == true)
      fl_doTransition();
    imageHolder.imageLoader.source = imageDP.getItemAt(currentImageID).source;
    title_txt.text = imageDP.getItemAt(currentImageID).label;
    function fl_doTransition():void
    if(transitionType == "Blinds")
      TransitionManager.start(imageHolder, {type:Blinds, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Fade")
      TransitionManager.start(imageHolder, {type:Fade, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Fly")
      TransitionManager.start(imageHolder, {type:Fly, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Iris")
      TransitionManager.start(imageHolder, {type:Iris, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Photo")
      TransitionManager.start(imageHolder, {type:Photo, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "PixelDissolve")
      TransitionManager.start(imageHolder, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Rotate")
      TransitionManager.start(imageHolder, {type:Rotate, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Squeeze")
      TransitionManager.start(imageHolder, {type:Squeeze, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Wipe")
      TransitionManager.start(imageHolder, {type:Wipe, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Zoom")
      TransitionManager.start(imageHolder, {type:Zoom, direction:Transition.IN, duration:0.25});
    } else if (transitionType == "Random")
      var randomNumber:Number = Math.round(Math.random()*9) + 1;
      switch (randomNumber) {
       case 1:
        TransitionManager.start(imageHolder, {type:Blinds, direction:Transition.IN, duration:0.25});
        break;
       case 2:
        TransitionManager.start(imageHolder, {type:Fade, direction:Transition.IN, duration:0.25});
        break;
       case 3:
        TransitionManager.start(imageHolder, {type:Fly, direction:Transition.IN, duration:0.25});
        break;
       case 4:
        TransitionManager.start(imageHolder, {type:Iris, direction:Transition.IN, duration:0.25});
        break;
       case 5:
        TransitionManager.start(imageHolder, {type:Photo, direction:Transition.IN, duration:0.25});
        break;
       case 6:
        TransitionManager.start(imageHolder, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
        break;
       case 7:
        TransitionManager.start(imageHolder, {type:Rotate, direction:Transition.IN, duration:0.25});
        break;
       case 8:
        TransitionManager.start(imageHolder, {type:Squeeze, direction:Transition.IN, duration:0.25});
        break;
       case 9:
        TransitionManager.start(imageHolder, {type:Wipe, direction:Transition.IN, duration:0.25});
        break;
       case 10:
        TransitionManager.start(imageHolder, {type:Zoom, direction:Transition.IN, duration:0.25});
        break;
    } else
      trace("error - transitionType not recognized");
    if(autoStart == true)
       fl_startSlideShow();
       playPauseToggle_mc.gotoAndStop("pause");
    // END FUNCTIONS AND LOGIC

    I am havign the same problem with mine and i have tried all the suggestion on this thread, nothing is working. Still doesnt show images if I send the .swf file to a co worker. Anyone have any other ideas
    my code:
    import fl.data.DataProvider;
    import fl.events.ListEvent;
    import fl.transitions.*;
    import fl.controls.*;
    // USER CONFIG SETTINGS =====
    var secondsDelay:Number = 2;
    var autoStart:Boolean = true;
    var transitionOn:Boolean = true; // true, false
    var transitionType:String = "Squeeze"; // Blinds, Fade, Fly, Iris, Photo, PixelDissolve, Rotate, Squeeze, Wipe, Zoom, Random
    var hardcodedXML:String = "<photos><image title='Quality Coverage'>images/image1.JPG</image><image title='Money Savings'>images/image2.JPG</image><image title='Home Insurance'>images/image3.JPG</image><image title='Fred Loya has Got You Covered'>images/image4.JPG</image></photos>";
    // END USER CONFIG SETTINGS
    // DECLARE VARIABLES AND OBJECTS =====
    var imageList:XML = new XML();
    var currentImageID:Number = 0;
    var imageDP:DataProvider = new DataProvider();
    var slideshowTimer:Timer = new Timer((secondsDelay*1005), 0);
    // END DECLARATIONS
    // CODE FOR HARDCODED XML =====
    imageList = XML(hardcodedXML);
    fl_parseImageXML(imageList);
    // END CODE FOR HARDCODED XML
    // EVENTS =====
    imageTiles.addEventListener(ListEvent.ITEM_CLICK, fl_tileClickHandler);
    function fl_tileClickHandler(evt:ListEvent):void
        imageHolder.imageLoader.source = evt.item.source;
        currentImageID = evt.item.imgID;
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    function fl_togglePlayPause(evt:MouseEvent):void
        if(playPauseToggle_mc.currentLabel == "play")
            fl_startSlideShow();
            playPauseToggle_mc.gotoAndStop("pause");
        else if(playPauseToggle_mc.currentLabel == "pause")
            fl_pauseSlideShow();
            playPauseToggle_mc.gotoAndStop("play");
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    function fl_nextButtonClick(evt:MouseEvent):void
        fl_nextSlide();
    function fl_prevButtonClick(evt:MouseEvent):void
        fl_prevSlide();
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    function fl_slideShowNext(evt:TimerEvent):void
        fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC =====
    function fl_parseImageXML(imageXML:XML):void
        var imagesNodes:XMLList = imageXML.children();
        for(var i in imagesNodes)
            var imgURL:String = imagesNodes[i];
            var imgTitle:String = imagesNodes[i].attribute("title");
            imageDP.addItem({label:imgTitle, source:imgURL, imgID:i});
        imageTiles.dataProvider = imageDP;
        imageHolder.imageLoader.source = imageDP.getItemAt(currentImageID).source;
        title_txt.text = imageDP.getItemAt(currentImageID).label;
    function fl_startSlideShow():void
        slideshowTimer.start();
    function fl_pauseSlideShow():void
        slideshowTimer.stop();
    function fl_nextSlide():void
        currentImageID++;
        if(currentImageID >= imageDP.length)
            currentImageID = 0;
        if(transitionOn == true)
            fl_doTransition();
        imageHolder.imageLoader.source = imageDP.getItemAt(currentImageID).source;
        title_txt.text = imageDP.getItemAt(currentImageID).label;
    function fl_prevSlide():void
        currentImageID--;
        if(currentImageID < 0)
            currentImageID = imageDP.length-1;
        if(transitionOn == true)
            fl_doTransition();
        imageHolder.imageLoader.source = imageDP.getItemAt(currentImageID).source;
        title_txt.text = imageDP.getItemAt(currentImageID).label;
    function fl_doTransition():void
        if(transitionType == "Blinds")
            TransitionManager.start(imageHolder, {type:Blinds, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Fade")
            TransitionManager.start(imageHolder, {type:Fade, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Fly")
            TransitionManager.start(imageHolder, {type:Fly, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Iris")
            TransitionManager.start(imageHolder, {type:Iris, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Photo")
            TransitionManager.start(imageHolder, {type:Photo, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "PixelDissolve")
            TransitionManager.start(imageHolder, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Rotate")
            TransitionManager.start(imageHolder, {type:Rotate, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Squeeze")
            TransitionManager.start(imageHolder, {type:Squeeze, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Wipe")
            TransitionManager.start(imageHolder, {type:Wipe, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Zoom")
            TransitionManager.start(imageHolder, {type:Zoom, direction:Transition.IN, duration:0.25});
        } else if (transitionType == "Random")
            var randomNumber:Number = Math.round(Math.random()*9) + 1;
            switch (randomNumber) {
                case 1:
                    TransitionManager.start(imageHolder, {type:Blinds, direction:Transition.IN, duration:0.25});
                    break;
                case 2:
                    TransitionManager.start(imageHolder, {type:Fade, direction:Transition.IN, duration:0.25});
                    break;
                case 3:
                    TransitionManager.start(imageHolder, {type:Fly, direction:Transition.IN, duration:0.25});
                    break;
                case 4:
                    TransitionManager.start(imageHolder, {type:Iris, direction:Transition.IN, duration:0.25});
                    break;
                case 5:
                    TransitionManager.start(imageHolder, {type:Photo, direction:Transition.IN, duration:0.25});
                    break;
                case 6:
                    TransitionManager.start(imageHolder, {type:PixelDissolve, direction:Transition.IN, duration:0.25});
                    break;
                case 7:
                    TransitionManager.start(imageHolder, {type:Rotate, direction:Transition.IN, duration:0.25});
                    break;
                case 8:
                    TransitionManager.start(imageHolder, {type:Squeeze, direction:Transition.IN, duration:0.25});
                    break;
                case 9:
                    TransitionManager.start(imageHolder, {type:Wipe, direction:Transition.IN, duration:0.25});
                    break;
                case 10:
                    TransitionManager.start(imageHolder, {type:Zoom, direction:Transition.IN, duration:0.25});
                    break;
        } else
            trace("error - transitionType not recognized");
    if(autoStart == true)
       fl_startSlideShow();
       playPauseToggle_mc.gotoAndStop("pause");
    // END FUNCTIONS AND LOGIC
    /* Click to Load/Unload SWF or Image from a URL.
    Clicking on the symbol instance loads and displays the specified SWF or image URL. Clicking on the symbol instance a second time unloads the SWF or image.
    Instructions:
    1. Replace "http://www.helpexamples.com/flash/images/image1.jpg" below with the desired URL address of the SWF or image. Keep the quotation marks ("").
    2. Files from internet domains separate from the domain where the calling SWF resides cannot be loaded without special configuration.
    imageHolder.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF);
    import fl.display.ProLoader;
    var fl_ProLoader:ProLoader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad:Boolean = true;
    function fl_ClickToLoadUnloadSWF(event:MouseEvent):void
        if(fl_ToLoad)
            fl_ProLoader = new ProLoader();
            fl_ProLoader.load(new URLRequest("http://www.helpexamples.com/flash/images/image1.jpg"));
            addChild(fl_ProLoader);
        else
            fl_ProLoader.unload();
            removeChild(fl_ProLoader);
            fl_ProLoader = null;
        // Toggle whether you want to load or unload the SWF
        fl_ToLoad = !fl_ToLoad;
    /* Click to Load/Unload SWF or Image from a URL.
    Clicking on the symbol instance loads and displays the specified SWF or image URL. Clicking on the symbol instance a second time unloads the SWF or image.
    Instructions:
    1. Replace "http://www.helpexamples.com/flash/images/image1.jpg" below with the desired URL address of the SWF or image. Keep the quotation marks ("").
    2. Files from internet domains separate from the domain where the calling SWF resides cannot be loaded without special configuration.
    imageHolder.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_2);
    import fl.display.ProLoader;
    var fl_ProLoader_2:ProLoader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_2:Boolean = true;
    function fl_ClickToLoadUnloadSWF_2(event:MouseEvent):void
        if(fl_ToLoad_2)
            fl_ProLoader_2 = new ProLoader();
            fl_ProLoader_2.load(new URLRequest("http://www.helpexamples.com/flash/images/image1.jpg"));
            addChild(fl_ProLoader_2);
        else
            fl_ProLoader_2.unload();
            removeChild(fl_ProLoader_2);
            fl_ProLoader_2 = null;
        // Toggle whether you want to load or unload the SWF
        fl_ToLoad_2 = !fl_ToLoad_2;

  • Issues making photo albums on Iphone4

    I am trying to make photo albums on my iphone4, and in Itunes it used to let me select sync photos from selected folder, and then I could select that folder and it would sync great and make an album. Now it wont let me choose selected folder, and will only let me choose all folders, or include videos. Does anyone know how to fix that?
    Thanks!

    Hello,
    Make sure you have the correct folder selected. Check the box "Sync photos from" and from the drop-down menu select "choose folder...".
    If the folder you chose contains sub-folders, you will be given an option to sync "Selected folders" otherwise the option is disabled.
    Hope this helps.

  • Simple Photo Album "previous" button issue

    Hello!  I have created a slide show using the Simple Photo Album template in Flash.  All works fine except for when I click the "previous" button to view the previous slide.  When I click it, the movie skips back 3 slides instead of just one.  How can I fix this?
    Thanks!
    Jessie

    try:
    jwood_its wrote:
    Oops, here it is!
    // USER CONFIG SETTINGS =====
    var autoStart:Boolean = false; //true, false
    var secondsDelay:Number = 2; // 1-60
    // END USER CONFIG SETTINGS
    // EVENTS =====
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    function fl_togglePlayPause(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "play")
      fl_startSlideShow();
      playPauseToggle_mc.gotoAndStop("pause");
    else if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    function fl_nextButtonClick(evt:MouseEvent):void
    fl_nextSlide();
    function fl_prevButtonClick(evt:MouseEvent):void
    fl_prevSlide();
    var currentImageID:Number;
    var slideshowTimer:Timer;
    var appInit:Boolean;
    function fl_slideShowNext(evt:TimerEvent):void
    fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC =====
    function fl_pauseSlideShow():void
    slideshowTimer.stop();
    function fl_startSlideShow():void
    slideshowTimer.start();
    function fl_nextSlide():void
    currentImageID++;
    if(currentImageID >= totalFrames)
      currentImageID = 0;
    gotoAndStop(currentImageID+1);
    function fl_prevSlide():void
    currentImageID--;
    if(currentImageID < 0)
      currentImageID = totalFrames+1;
    gotoAndStop(currentImageID+1);
    if(autoStart == true)
       fl_startSlideShow();
       playPauseToggle_mc.gotoAndStop("pause");
    } else {
      gotoAndStop(1);
    function initApp(){
    currentImageID = 0;
    slideshowTimer = new Timer((secondsDelay*1000), 0);
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    if(appInit != true){
    initApp();
    appInit = true;
    // END FUNCTIONS AND LOGIC

  • Advanced Photo Album Template Issue

    Hey all. I tried to create a photo album using the Advanced Photo Album Template that comes in Flash CS5. Everything seems to work fine - however, when you click on the thumbnails on the left hand side, the titles do not change to the appropriate thumbnail. The title simply remains the same for any thumbnail image, until you click the play or forward/backward buttons. The titles change fine when I hit the play button or scroll through with the forward or backward buttons, but not when you click on the individual thumbnails. Any idea how to change this so it functions correctly? Thanks everyone.

    Code for updating the title is missing. Add following line of code inside function fl_tileClickHandler()
    title_txt.text = imageDP.getItemAt(currentImageID).label;

  • How to improve performance of photo albums and navigation?

    I just uploaded the latest version of my new website (www.raydunakin.com) last night. I've made a lot of changes in an effort to make it load faster and work more smoothly. There is some improvement but on my Mac, with dialup, there are still some issues.
    One big issue is photo albums. I don't understand why they load so slowly, when it's only loading thumbnail images. The thumbnails are too small to account for the excessive load time. Often there are several that don't load up all until sometime after I click the browser's Stop button.
    Which is another issue: Why does it keep loading stuff after I've clicked Stop?
    I've stripped my albums down to just 15 images per album, so the number of images shouldn't be a problem.
    BTW, I gave up on using the "My Albums" template, which was impossibly slow. Instead I just have a page with a list of links to each album.
    I'm wondering if having everything all in one site might be causing some of the speed problems. Would I be better off moving my photo album pages to a separate site and just link to them from the main site?
    One more question: Many of my hypertext links are not displaying correctly. They are supposed to all be underlined and in a different color from the plain text. Some of them do show up this way, but some look like plain text until you move the cursor over them. (And yes, I have used the Inspector to set the format for all the links.)
    Also, if anyone would like to browse my site and suggest other ways to improve or streamline it, I would appreciate it.
    Thanks in advance for any help or comments you can provide.
    I'm running OS X 10.4.10, Safari 2.0.4, and iWeb 2.0.3

    Ray Dunakin wrote:
    Hi Ray,
    One big issue is photo albums. I don't understand why they load so slowly, when it's only loading thumbnail images. The thumbnails are too small to account for the excessive load time.
    To me it's not taking all that much time... It's quite normal if you're publishing to .Mac... The .Mac server is quite slow, that's a known issue... Partially it may also be due to the template used but I don't think so... There aren't a lot of graphics on that one...
    Often there are several that don't load up all until sometime after I click the browser's Stop button.
    Which is another issue: Why does it keep loading stuff after I've clicked Stop?
    I didn't came across any that didn't load and when I hit stop it stops.
    I'm wondering if having everything all in one site might be causing some of the speed problems. Would I be better off moving my photo album pages to a separate site and just link to them from the main site?
    No that's not the issue. The site size doesn't matter as when you look at a page the browser only retrieves the information about that very page and doesn't even see all the other pages as it follows the links to retrieve the parts of that very page and that's it. What matters is the page size but it isn't heavy at all in your case...
    One more question: Many of my hypertext links are not displaying correctly. They are supposed to all be underlined and in a different color from the plain text. Some of them do show up this way, but some look like plain text until you move the cursor over them. (And yes, I have used the Inspector to set the format for all the links.)
    You may try a "Publish all" from the File menu for that... Or empty the cache of your browser...
    Also, if anyone would like to browse my site and suggest other ways to improve or streamline it, I would appreciate it.
    I like it it's very clean and easy to navigate.
    One other problem with the photo albums that I forgot to mention... When clicking on a thumbnail to view the larger image, while the image loads it looks like nothing is happening. There's no evidence that the image is loading or anything. So by the time the larger image appears, I've already attempted to move on. Is there anything that can be done about this?
    It takes a second to load but in the end it does load... To me it's the server's slowness even if not publishing to .mac...
    Regards,
    Cédric

  • 1.)  How do I organized my photo album on my ipad?  2.)  How do I remove an album on my ipad?  3.)  i have taken over 1,000 photos on ipad, now it won't sync stuff to the ipad because it said there is not enough space.  I want to delete some past synced p

    1.)  How do I organized my photo album on my ipad?
    2.)  How do I remove an album on my ipad?
    3.)  i have taken over 1,000 photos on ipad, now it won't sync stuff to the ipad because it said there is not enough space.  I want to delete some past synced photos from the computer to create space, but I don't know how to find it on computer.  It sycned a portion of a file onto the ipad which is useless to me so I want to delete it all &amp; start fresh.
    4.)  I was thinking about copying some of those photos over so it would show up as new data maybe then it would sync to my ipad as a new &amp; competed album.  Or will this create more problem because it would only be creating more photos?
    5.)  By the way, I don't know how to use dropbox or anything like it, so I take photos of some files &amp; web screen that I use regularly to always have access regardless of internet access.  That is why I have so many photos.  But I want to be able to separate &amp; organized them by files, web screens, or topics.  I also want to be able to delete &amp; update as needed.
    6.)  If needed I am willing to delete 4 G of downloaded app to create space.  Will this help the space issue?  Also could I just leave the downloaded app to my computer only &amp; only sync to to ipad as needed, since I don't need app as regularly.  I NEED "photo" ALL of the TIME!  I am out in the field, instead of carrying stack &amp; stack of papers, I carry ipad with photo of these daily needed papers!

    1, you can't at the moment, though with iOS 5 in the Autumn, from http://www.apple.com/ios/ios5/features.html#photos :
    Even organize your photos in albums — right on your device
    2, by removing it from you synced from and re-syncing. Only photos taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad (either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view)
    3, the location of the photos that you synced to the iPad should be listed on the iPad's Photos tab when connected to your computer's iTunes.
    4, you can copy the photos from your iPad to your computer : http://support.apple.com/kb/HT4083 . You should also be able to delete them from the iPad as part of the transfer process to your computer, and it's then your choice whether to add them to your sync photo list so as to copy them back to the iPad. Copying them to your computer would allow you to organise them into folders and therefore be able to sync them back into separate albums.
    5, I don't use Dropbox either. There are some third-party browser apps in the iTunes App Store that allow you to download pages so that you can view them when offline e.g. Atomic Web (the whole page is saved within Atomic Web, it doesn't place a photo into the Photos app)
    6, deleting content should help. If you remove an app from your iPad then you also remove the content that it's got on the iPad - so if you then decide to reinstall it back onto the iPad then you will need to manually add back any content that you want in it. None of the Apple built-in apps (including Photos) can be removed from the iPad

  • How do I break the loop of restoring photo albums on my iPhone 4S?

    Hello one and all,
    First of all thank you for reading this, I really hope someone out there can point me in the right direction. I have synced my iPhone in iTunes and all has gone well. HOWEVER when I go to Photos on the phone it shows the camera roll and I get a message saying "Restoring". The phone then begins to build albums I do not have set to synchronise.
    Background:
    I did have multiple albums set to synchronise in iTunes but I have since switched off the synchronising for photos in iTunes. I got the warning about deleting those photos from my phone and elected to go ahead and delete those photos from the phone. All went without a hitch and iTunes showed the phone as having 51 photos. This tallies with the contents of the camera roll. Perfect.
    When I eject my iPhone and enter the Photos option I see my camera roll only. Lovely. After a couple of seconds however I get the message "Restoring" and albums start reappearing. I have tried restarting iTunes and performing a restart of the phone (not just off and on again). I have disconnected the USB cable between the two while restarting. Still I cannot get rid of this fascist restoring process. In the end as a precaution I switched on photo syncing in iTunes and set it to selected folders only. I selected a folder I had just created. A folder with nothing in it. It shows this folder has 0 photos in iTunes. STILL my iPhone is restoring photo albums. I do not want >7000 photos. I want only the 51 you promised.
    I don't have photo stream switched on, the phone is set to back up by USB to my MBP only and the iTunes sync shows no problems. My MBP is running the latest iTunes and OSX and my iPhone is on the latest version of iOS. I have searched on the forums and used Google: close threads but nothing addressing this issue. Please, please, please help. I know it is going to be something stupidly simple but can anyone provide a solution?
    Yours in desperation,
    Andy

    http://support.apple.com/kb/HT4847

  • I have a photo album in my apple tv but can't get the apple tv to use it as a screen saver. it is using older photos

    I have a photo album in my apple tv but can't get the apple tv to use it as a screen saver. it is using older photos

    Is this a software or hardware issue? 

  • On Facebook, how can I share another person's photo album to my iPad? It shows up on my Android phone and on my computer, but not on my iPad.

    My son posted an album on Facebook; he took the pictures with a regular camera. I shared the album and it immediately showed up on my All-in-One computer and on my Droid phone on my Facebook timeline. It has never appeared on the iPad, so all my friends with iPads are not seeing this photo album. Do yoiu have any idea why?
    Thanks, Naomi

    naomifromfl wrote:
    My son posted an album on Facebook; he took the pictures with a regular camera. I shared the album and it immediately showed up on my All-in-One computer and on my Droid phone on my Facebook timeline. It has never appeared on the iPad, so all my friends with iPads are not seeing this photo album. Do yoiu have any idea why?
    Thanks, Naomi
    I have discovered the same problem.  The timeline or group that the album is loaded directly to one can see the album and photos. However my habit has been to us my group as archive and then share the album with other groups saving me uploading several times.  If I look at on my desktop I and others like you see the shared album and friends with droid FB apo also see but ones with iOS FB app do not see the shared album be it on a friend/family member timeline another group.  I do not think this used to be, if almost seems that recent updates of the applicaion for iOS led to this problem but I am not certain. This is a big issue as I do not have time to upload and describe the same photos on the two to three other groups I share with.  I share your frustration, and there seem to be other things I do not see maybe it is all the shared photos/albums vs ones put on a timeline or group.  Not acceptable...

  • My photo albums are no longer alphabetical after ios5 update

    I upgraded my Ipad 2 & ipod touch 4g to ios 5. My photo albums which sync to photoshop elements are no longer alphabetical which now makes it a pain to locate photos. What can I do?

    The contacts is saved on Google or Backup Assistance (Whichever you are using) and you can use ES File Explorer like I posted at http://community.vzw.com/t5/Android-Apps/Simple-way-to-Backup-apps-for-Hard-Reset/td-p/658707 , so you really wont loose anything but apps data...
    BUT, I am not saying that you do this if that is your only issue...  I was just pointing out that this is a good ideal to do with any Major Updates..
    If the contacts isnt linked again you should get the option to link them again once the OS boots, normally it checks and then prompt to link again..

  • When I updated to iOS 8.3 I lost all shared photo albums on my iPad Air. Other devises which I shared to still have access to photo albums but my iPad does not, therefore I can no longer add or delete to shared albums. I can create new shared albums.

    When I updated to iOS 8.3 I lost all shared photo albums on my iPad Air. Other devises which I shared to still have access to photo albums but my iPad does not, therefore I can no longer add or delete to shared albums. I can create new shared albums.

    Hello JimS19,
    I'm sorry to hear you are having these issues with your iPad. If you are having issues accessing your Shared Albums from your iPad (but not from your other devices), you may want to double-check your iCloud Photo Sharing configuration as outlined in the following articles, just to make sure it hasn't changed:
    iCloud Photo Sharing FAQ - Apple Support
    Get help using iCloud Photo Sharing and shared albums - Apple Support
    Sincerely,
    - Brenden

Maybe you are looking for

  • HT1198 Sharing a single iPhoto Library with 2 Apple IDs

    Hi all, I'm a bit confused about this article. I was working with a poster on a question which ultimately led me to this article (as he was using the Disk method described in this article to share their one Mac's iPhoto library between them). What I'

  • Iphone shows black & white photo's & video when connected to HD TV?

    I bought the Apple composite A/V cables to connect my iphone 3GS to my HD TV. While both photo's and video do play on the TV, they are in black & white. Does anyone know why? Is there a setting in the iphone that allows color? I'm sure it's not a set

  • Checkbox appears with text behind box in FORM

    Hello, i created a master detail page where i can also edit the master through a form (all on the same page). The check boxes in the reports are fine but in the form (to edit the master) the box appears with a text behind the box: Eigen Fust ?      "

  • Playlists with folders - doesn't work

    Brandnew iPod 30 GB, 5.5 Do have playlists with folders on iTunes 7.0.2. Folders don't appear on the iPod. Only the files in the folders. So i get a long long list of playlists on the iPod. Instead of a list with several folders in it for better over

  • Can I use the iPhone 5c in the Middle East?

    Anything I need to do to use the phone in Israel?