Error JS photo Album

Using DW 8.0.2 & FW 8.0.0.777 and try to create a photo album. Created several in the past with notproblems. Now, I get the following:

While executng onClick in create Web Photo Album2.htm the following JavaScript error occurred:
The line 1626 file c:\Program Files\Macromedia\Dreamweaver 8\Configuration\ Commands\Create Web Album2.js Photo:
ReferenceError: DWsize is not defined

Cannot get past this error, can someone shed some light on a fix/patch so that I can continue. The client wants this album on the site as soon as POSSIBLE. BTW I don't know JS yet.

Thank you to each and every one.

Close the fires of artifice and DW, restart DW, and then try again.
Close the fires of artifice and DW, restart the computer, restart DW and try again.

Which always cleared up this error for me.

"MrBob78" wrote in message
News:elrpig$8i8$1@forums. Macromedia.com...
> Using DW 8.0.2 & FW 8.0.0.777 and try to create a photo album. Created
> several in the past with notproblems. Now, I get the following:
>
> Executng onClick while in create Web Photo Album2.htm the following
> JavaScript error (s):
> Line 1626 file c:\Program Files\Macromedia\Dreamweaver
> 8\Configuration\ Commands\Create Web Album2.js Photo:
> ReferenceError: DWsize is undefined
>
> Can not go beyond this error, can anyone shed some light on a fix/patch
> order
> that I can continue. The client wants this album on the site as soon as POSSIBLE. BTW I don't have
> know JS
> yet.
>
> Thank you one and all.
>
>

Tags: Dreamweaver

Similar Questions

  • HELP needed on 'Advanced Photo Album' Flash CS5 model Io-error: url not found

    Hello people!

    I had a problem on my slide show I did with the "Advanced Photo Album" model. This problem is not new, I found a thread here with similar problems, but it did not help me. I had the same code as the people in the other forum, but my problem is not the download problem. but I can't even see the images when I test the movie. The rest works fine, it shows the titles of the image on the right, and in fact "slides". The only problem is I get the error:

    #2044 error: ioError unverarbeitet. Text = Error #2035: Die URL wurde nicht found. URL: file:///C|/Users/User/Desktop/FenzBildergalerie/image1.JPG

    (for those who don't speak German: it is said: IO error not handled. text = Error #2035:Url not found.)

    I followed this tutorial here and did everything in exactly the same way.

    all my images are named image1.jpg and so forth and are all in the same folder as the .swf and .fla here files:

    folderdirectory.jpg

    AND: I followed the advice of the other forum:

    "To ensure that the images are in the same location as the swf file, does not matter the fla file.  Also I suggest that you manually rename one of the images, rename the file name and extension.  My previous question to have to the hardcode the. JPG as all caps was weird because on my system, they presented as .jpg.  Again, I would renameing the first and second image with a manual .jpg typed in the name of the file, not only the code as3.

    PS also try to change the as3 of the 3rd and 4th image code in. JPG to see if that helps. »

    I have tried every single possibility in renamed:

    Image1.jpg

    Image1. JPG

    Image1. JPEG

    img1jpg

    img1. JPG

    It does not at all...

    still, it looks like this:

    galleryissue.jpg


    Here is my code:

    Import fl.data.DataProvider;
    Import fl.events.ListEvent;
    Fl.transitions import. *;
    Fl.controls import. *;

    USER CONFIGURATION SETTINGS.
    var secondsDelay:Number = 5;
    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 ="View"> image1.jpg < / image > < image title ="Badesteg"> image2.jpg < / image > < image title ="Location"> image3.jpg < / image > < image title ="Kochecke"> image4.jpg < / image > < image title = 'Sofa' > image5.jpg < / image > < image title ="Garden"> image6.jpg < / image > < image title ="Liegebereich"> image7.jpg < / image > < image title ="Room"> image8.jpg < / image > < image" title = "Badekar" > image9.jpg < / image > < image title = "Bett" > image10.jpg < / image > < / photos > «;»
    THE END USER CONFIGURATION 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);
    REPORT AS FINISHED

    HARDCODED FOR XML CODE =.
    imageList = XML (hardcodedXML);
    fl_parseImageXML (ImageList);
    END OF THE HARD-CODED 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 is "play")
    {
    fl_startSlideShow();
    playPauseToggle_mc.gotoAndStop ("pause");
    }
    Else if (playPauseToggle_mc.currentLabel == "Paused")
    {
    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();
    }
    EVENTS OF THE END

    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 is 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 is "Blinds")
    {
    TransitionManager.start (imageHolder, {type: stores, direction: Transition.IN, duration: 0.25});
    } ElseIf (transitionType == 'Fade')
    {
    TransitionManager.start (imageHolder, {type: Fade, direction: Transition.IN, length: 0.25});
    } ElseIf (transitionType == 'Fly')
    {
    TransitionManager.start (imageHolder, {type: Fly, direction: Transition.IN, length: 0.25});
    } ElseIf (transitionType == "Iris")
    {
    TransitionManager.start (imageHolder, {type: Iris, direction: Transition.IN, duration: 0.25});
    } ElseIf (transitionType == 'Photo')
    {
    TransitionManager.start (imageHolder, {type: Photo, direction: Transition.IN, duration: 0.25});
    } ElseIf (transitionType == "PixelDissolve")
    {
    TransitionManager.start (imageHolder, {type: PixelDissolve, direction: Transition.IN, length: 0.25});
    } ElseIf (transitionType == "Rotate")
    {
    TransitionManager.start (imageHolder, {type: turn, direction: Transition.IN, length: 0.25});
    } ElseIf (transitionType == 'Squeeze')
    {
    TransitionManager.start (imageHolder, {type: Squeeze, direction: Transition.IN, length: 0.25});
    } ElseIf (transitionType == "Wipe")
    {
    TransitionManager.start (imageHolder, {type: wipe, direction: Transition.IN, length: 0.25});
    } ElseIf (transitionType == 'Zoom')
    {
    TransitionManager.start (imageHolder, {type: Zoom, direction: Transition.IN, duration: 0.25});
    } ElseIf (transitionType == "Random")
    {
    var randomNumber:Number = Math.round (Math.random () * 9) + 1;
    Switch (NombrAl) {}
    case 1:
    TransitionManager.start (imageHolder, {type: stores, direction: Transition.IN, duration: 0.25});
    break;
    case 2:
    TransitionManager.start (imageHolder, {type: Fade, direction: Transition.IN, length: 0.25});
    break;
    case 3:
    TransitionManager.start (imageHolder, {type: Fly, direction: Transition.IN, length: 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, length: 0.25});
    break;
    case 7:
    TransitionManager.start (imageHolder, {type: turn, direction: Transition.IN, length: 0.25});
    break;
    case 8:
    TransitionManager.start (imageHolder, {type: Squeeze, direction: Transition.IN, length: 0.25});
    break;
    case 9:
    TransitionManager.start (imageHolder, {type: wipe, direction: Transition.IN, length: 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 OF FUNCTIONS AND LOGIC

    I would really appreciate your help!

    Best regards, eva

    PS. I m of the Austria, if you prefer to speak German

    If this image you show first in the first display shows the folder of your images, then your code is not agree with the names of these images, and one of them be wrong will kick you get the error message...  ". JPG 'and '. JPEG"is not the same as".jpg ".  You should change all your image filenames to match with the code so that you have a consistent naming of your files.

    var hardcodedXML:String ="Image1.jpgImage2.jpgimage3.jpgimage4.jpgimage5.jpgimage6.jpgimage7.jpgimage8.jpgimage9.jpgimage10.jpg";

  • Windows not allowing me to use Photo Album 7 installed

    I loaded Photo Album 7 and get Windows error message when I try to open the program:

    "Windows looking for the solution.

    "A problem caused program stop working.  Windows will close the program and notify you if a solution is available. »

    "Close the program".

    No solution is given.  Help!  Cannot access photos already on the computer.  Hit a wall - something in Windows is blocking this new program (that was my version intro already on the computer which worked well... formerly Corel Snapfire).

    The program works best if you right-click on the shortcut (or .exe) and select the option "Run as Administrator"?

    Is there another process that you use that are causing problems for 7 Photo Album?

    How to troubleshoot a program that does not run as expected once it is installed on Windows Vista
    http://support.Microsoft.com/kb/931362/en-us

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/default.aspx/KB/929135

  • Windows live skydrive will send photo albums in windows live mail

    Windows live skydrive will send photo albums in windows live mail.  is just my Outbox saying there is an error photo album & clear

    Your question is more directly related to Windows Live Mail for Windows 7 and would be better displayed in the Windows Live Mail community. Windows Live Mail experts it will be happy to help you.

    Windows Live Solution Center
    http://windowslivehelp.com/

    Windows Live Mail Portal
    http://windowslivehelp.com/product.aspx?ProductID=15

    I hope this helps.

  • Next button circumvents the delay in photo album

    I am a novice with Flash Pro, but the challenge of creating a slide show to a Web site. I used Flash Pro CS5 and the model Advanced Photo Album. I have struggled for a while and searched around for more information before arriving finally to load images and work as coded.

    Everything went well and I published the. SWF and all images on the site root folder but when I click on the 'next' button it pops a picture. The delay is set to 5 seconds, but it would seem that the forward button circumvents the delay that is if I leave a picture for 3 seconds and then press the next button, the following image shows only 2 seconds ahead of siwtching to the next, despite the delay to 5. If I let it run automatically as all the pictures to follow the rule of the time. I have included the code below. The only thing I changed is the length of the transition from "fade" between 0.25 and 1.

    Note: I had to integrate the HTML code not the. SWF when integrating the. SWF on the site, he brought to the top of the flash element, but none of the images. Don't know if it is having an effect on coding.

    Many thanks for any help

    Import fl.data.DataProvider;

    Import fl.events.ListEvent;

    Fl.transitions import. *;

    Fl.controls import. *;

    USER CONFIGURATION SETTINGS.

    var secondsDelay:Number = 5;

    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 ="Rank insignias"> image1.png < / image > < image title ="How it works"> image2.png < / image > < image title ="First steps"> image3.png < / image > < image title ="Brain Crank"> image4.png < / image > < image title ="Natural friendship"> image5.png < / image > < image title ="Fire"> image6.png < / image > < image title ="I got this"> image7.png < / image > < image" title = 'Magic act' > image8.png < / image > < image title = "Replay" > image9.png < / image > < image title = "Samaritan" > image10.png < / image > < image title = 'No. Tag back' > image11.png < / image > < / photos > «;»

    THE END USER CONFIGURATION 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);

    REPORT AS FINISHED

    HARDCODED FOR XML CODE =.

    imageList = XML (hardcodedXML);

    fl_parseImageXML (ImageList);

    END OF THE HARD-CODED 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 is "play")

    {

    fl_startSlideShow();

    playPauseToggle_mc.gotoAndStop ("pause");

    }

    Else if (playPauseToggle_mc.currentLabel == "Paused")

    {

    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();

    }

    EVENTS OF THE END

    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 is 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 is "Blinds")

    {

    TransitionManager.start (imageHolder, {type: stores, direction: Transition.IN, duration: 0.25});

    } ElseIf (transitionType == 'Fade')

    {

    TransitionManager.start (imageHolder, {type: Fade, direction: Transition.IN, time: 1});

    } ElseIf (transitionType == 'Fly')

    {

    TransitionManager.start (imageHolder, {type: Fly, direction: Transition.IN, length: 0.25});

    } ElseIf (transitionType == "Iris")

    {

    TransitionManager.start (imageHolder, {type: Iris, direction: Transition.IN, duration: 0.25});

    } ElseIf (transitionType == 'Photo')

    {

    TransitionManager.start (imageHolder, {type: Photo, direction: Transition.IN, duration: 0.25});

    } ElseIf (transitionType == "PixelDissolve")

    {

    TransitionManager.start (imageHolder, {type: PixelDissolve, direction: Transition.IN, length: 0.25});

    } ElseIf (transitionType == "Rotate")

    {

    TransitionManager.start (imageHolder, {type: turn, direction: Transition.IN, length: 0.25});

    } ElseIf (transitionType == 'Squeeze')

    {

    TransitionManager.start (imageHolder, {type: Squeeze, direction: Transition.IN, length: 0.25});

    } ElseIf (transitionType == "Wipe")

    {

    TransitionManager.start (imageHolder, {type: wipe, direction: Transition.IN, length: 0.25});

    } ElseIf (transitionType == 'Zoom')

    {

    TransitionManager.start (imageHolder, {type: Zoom, direction: Transition.IN, duration: 0.25});

    } ElseIf (transitionType == "Random")

    {

    var randomNumber:Number = Math.round (Math.random () * 9) + 1;

    Switch (NombrAl) {}

    case 1:

    TransitionManager.start (imageHolder, {type: stores, direction: Transition.IN, duration: 0.25});

    break;

    case 2:

    TransitionManager.start (imageHolder, {type: Fade, direction: Transition.IN, time: 1});

    break;

    case 3:

    TransitionManager.start (imageHolder, {type: Fly, direction: Transition.IN, length: 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, length: 0.25});

    break;

    case 7:

    TransitionManager.start (imageHolder, {type: turn, direction: Transition.IN, length: 0.25});

    break;

    case 8:

    TransitionManager.start (imageHolder, {type: Squeeze, direction: Transition.IN, length: 0.25});

    break;

    case 9:

    TransitionManager.start (imageHolder, {type: wipe, direction: Transition.IN, length: 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 OF FUNCTIONS AND LOGIC

    The error is because the line fl_parseImageXML (imageList); has been placed before the line var imageDP:DataProvider = new DataProvider(); -so the error 1009.

    As far as model goes - it's lame but I kind of understand the intention to make very primitive while demonstrating some basic AS3 features.

    The code below works perfectly. I tested against this model.

    import fl.data.DataProvider;
    import fl.events.ListEvent;
    import fl.transitions.*;
    import fl.controls.*;
    import flash.utils.Timer;
    
    // USER CONFIG SETTINGS =====
    var secondsDelay:Number = 2;
    var autoStart:Boolean = true;
    var transitionOn:Boolean = true; // true, false
    var transitionsList:Object = {Blinds: Blinds, Fade: Fade, Fly: Fly, Iris: Iris, Photo: Photo, PixelDissolve: PixelDissolve, Rotate: Rotate, Rotate: Rotate, Squeeze: Squeeze, Wipe: Wipe, Zoom: Zoom};
    var randomTransitions:Array = [Blinds, Fade, Fly, Iris, Photo, PixelDissolve, Rotate, Squeeze, Wipe, Zoom];
    var transitionType:String = "Random"; // Blinds, Fade, Fly, Iris, Photo, PixelDissolve, Rotate, Squeeze, Wipe, Zoom, Random
    var imageList:XML = new XML(image1.pngimage2.pngimage3.pngimage4.pngimage5.pngimage6.pngimage7.pngimage8.pngimage9.pngimage10.pngimage11.png);
    
    // END USER CONFIG SETTINGS
    
    // DECLARE VARIABLES AND OBJECTS =====
    var _currentImageID:int = 0;
    var imageDP:DataProvider = new DataProvider();
    var slideshowTimer:Timer = new Timer((secondsDelay * 1000), 0);
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    // END DECLARATIONS
    
    fl_parseImageXML(imageList);
    // END CODE FOR HARDCODED XML
    
    // EVENTS =====
    imageTiles.addEventListener(ListEvent.ITEM_CLICK, fl_tileClickHandler);
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    
    function fl_parseImageXML(imageXML:XML):void
    {
        var imagesNodes:XMLList = imageXML.children();
        for (var i:String in imagesNodes)
        {
            imageDP.addItem({label: imagesNodes[i].@title, source: imagesNodes[i], imgID: int(i)});
        }
        imageTiles.dataProvider = imageDP;
        imageHolder.imageLoader.source = imageDP.getItemAt(currentImageID).source;
        title_txt.text = imageDP.getItemAt(currentImageID).label;
    }
    
    function fl_tileClickHandler(evt:ListEvent):void
    {
        imageHolder.imageLoader.source = evt.item.source;
        currentImageID = evt.item.imgID;
    }
    
    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");
        }
    }
    
    function fl_nextButtonClick(evt:MouseEvent):void
    {
        if (slideshowTimer.running) {
            resetTimer();
        }
        fl_nextSlide();
    }
    
    function fl_prevButtonClick(evt:MouseEvent):void
    {
        if (slideshowTimer.running) {
            resetTimer();
        }
        fl_prevSlide();
    }
    
    function resetTimer():void
    {
        slideshowTimer.reset();
        slideshowTimer.start();
    }
    
    function fl_slideShowNext(evt:TimerEvent):void
    {
        fl_nextSlide();
    }
    
    // END EVENTS
    
    // FUNCTIONS AND LOGIC =====
    
    function fl_startSlideShow():void
    {
        slideshowTimer.start();
    }
    
    function fl_pauseSlideShow():void
    {
        slideshowTimer.stop();
    }
    
    function fl_nextSlide():void
    {
        currentImageID++;
    }
    
    function fl_prevSlide():void
    {
        currentImageID--;
    }
    
    function get currentImageID():Number
    {
        return _currentImageID;
    }
    
    function set currentImageID(value:Number):void
    {
        _currentImageID = value < 0 ? imageDP.length - 1 : value;
        _currentImageID = value >= imageDP.length ? 0 : value;
        imageHolder.imageLoader.source = imageDP.getItemAt(_currentImageID).source;
        title_txt.text = imageDP.getItemAt(_currentImageID).label;
        if (transitionOn)
        {
            fl_doTransition();
        }
    }
    
    function fl_doTransition():void
    {
    
        var transition:Class;
        var duration:Number = 1;
        if (transitionType == "Random")
        {
            transition = randomTransitions[int(randomTransitions.length * Math.random())] as Class;
            duration = transition == Fade ? 1 : duration;
        }
        else
        {
            transition = transitionsList[transitionType] as Class;
            if (!transition)
            {
                return;
            }
        }
        TransitionManager.start(imageHolder, {type: transition, direction: Transition.IN, duration: duration});
    }
    
    if (autoStart == true)
    {
        fl_startSlideShow();
        playPauseToggle_mc.gotoAndStop("pause");
    }
    // END FUNCTIONS AND LOGIC
    
  • frames and photo album

    I would like to make a photo album with an overview on the same page as thumbnails to open. I can do that with frames, but I feel that the images are better avoided. Is this true? Is there another way to do this?

    You can choose some really depending on the look you are after:

    Using the behavior of the value of text, which is quite easy to use:-J' I am example here:

    http://DreamweaverResources.com/tutorials/set-text-of-layer/

    Using a Dreamweaver extension to create a lightbox effect - example here (and where the expansion is available)

    http://DreamweaverResources.com/tutorials/Dreamweaver-lightbox/

    Image Gallery

    http://www.SimpleViewer.NET/SimpleViewer/

    Lytebox

    http://www.dolem.com/Lytebox/

    PrettyPhoto:

    http://www.no-margin-for-errors.com/projects/prettyPhoto-jQuery-Lightbox-clone/

    --

    Nadia

    Adobe Community Expert: Dreamweaver

    ---------------------------------------------------------------

    Unique templates CSS | Tutorials | SEO articles

    http://www.DreamweaverResources.com

    --------------------------------------------------------------------------

    Web Design & development

    http://www.perrelink.com.au

    http://Twitter.com/nadiap

  • With 10 IOS, how can I move images to e-mail/text to photo album?

    After downloading the IOS 10.0.2 the icon 'Save image' has been removed from the windows of emails and text. How e-mail/text images can be moved in the photo album?

    Put your finger on the image (do not press down) and after a few seconds, a menu will appear that includes the save option.

  • Import Album Aperture in Photo Album

    I forgot how to import an Aperture album in a photo album. I exported the album but this is a library.

    My goal is to import albums with key words, original, etc. in a photo album.

    Drag the Aperture exported with your book on the Photos icon in the Dock library.  Photos will create a new library of Photos in the Aperture library.

    You can not import the Aperture library into an existing photo library, only to migrate to a separate photo library.

    See this page to switch between photo libraries: https://help.apple.com/photos/mac/1.2/?lang=en#/pht6d60b524

  • Delete the people &amp; places of Photo Albums

    It was sometimes a little boring, but how do you remove the people and places of your Photo Albums?

    Hello calicharles,

    Welcome to the communities of Apple Support!

    I see you're wondering if you can remove the sections people & places album in the Photos app. I understand only eager to have albums you want. I can help you with this.

    In the Photos of 10 iOS app, the albums of people and places are designed to help you better organize and view your Photos. You cannot delete these albums.

    Best regards.

  • Change the pictures in the photo album

    Need help, I have upgraded to ios10 and thought that the sweep of the face in photos was fab! Only problem is, my children alike and he put in the album of bad 'person '... I can't find a way to disable the branding or re-branding or removal of the album or anything... Please help

    See the help on the people page: http://help.apple.com/iphone/10/#/iph9c7ee918c

    Remove misidentified one. Press a person in the photo album, and then view all to display all the photos they appear in. Press Select, tap Show Faces, tap the misidentified face, press the Share button, then tap not this person.

    There are a lot of plays, but you can delete the incorrectly identified people in this way.

    To give them a correct name, click "Add people" and the face of the person will meet you to rename.

  • How can I use my photo albums as screensaver with Apple TV 4th gen

    How can I use a photo album that I created as a screensaver on the generation of Apple TV 4 because it is not an option in this sense?

    What follows is the Apple TV 4 user guide...

    Screensavers

    Apple TV displays a screen saver when it remains inactive for a predefined number of minutes.

    Air screensaver shows beautiful videos of slow motion of the places of the world, upload to an online server, making the screen saver more engaging and dynamic. For the antenna, you can control how many times Apple TV check and download new videos.

    Change the frequency of aerial screensaver download. In settings, go to general > screen saver and select Download New Videos, and then select an option.

    Return by using Apple TV. When the screen saver is active, press the contact surface to get to some app have been previously using.

    Choose a different screen saver. In settings, go to general > screen saver and select the Type. Then select the screen saver you want to use.

    Select the photos to display. Many of the screen saver options display a slide show of photos - it can include photos provided by Apple, or your own collection stored in iCloud. To choose which photos are used, in the settings, go to general > screen saver and select the Type. Then choose one of the types of screensaver-photographers.

    If you choose my Photos, the Photos app opens. Follow the instructions to put photos as screensaver.

    Set the screensaver time-out. In settings, go to general > screen saver and select the setting starts after, and then specify a number of minutes. This indicates to the Apple TV to start the screen saver automatically if the unit has been idle for the specified time.

    Activate the screen saver immediately. Press the Home button to go to the home screen (if it isn't already), and then press the button twice.

  • A way to remove the photo album of "places"?

    I really don't like the new photo albums that set off with iOS 10 (places and people) is it possible to completely delete these albums? Or at least delete items already in these records?

    Also while I'm here... I used to have my history of safari, the value "don't follow do not", and it worked, since the update, he said still are not but now watch my browsing history, ugh.

    Help, please!

    Sorry, this can be done:

    copied from: iOS10/organize user guide Photos and videos

  • Photo albums, do not sync on iOS 10

    Whenever I try to sync my photo albums regular on my iPhone with the newly updated iOS 10, photos sync but not displayed in albums.

    They show in the pictures under different dates tab, but not in the albums section in the appropriate album titles the they are synced with.

    Ive never had this problem until the update to iOS 10 today.

    Help, please! Given these photos sorted into albums is a necessity for me!

    I have the same problem, had to go back to the old version of IOS 9.x

    I have my photos in a folder called 'Images', I will not sync with the Photos app.

  • Invisible photo albums

    Hi I have an iPad running iOS 9.3.5. I turned off to iCloud photo sharing, and I am not sync the iPad with a computer. I now have a photo album Photos (I had more before I tried to solve this problem), but when I put a picture in and then delete it, it says: "this photo will also be removed from 3 albums." As I said, I currently have 1 album. Any time that I remove the album, create a new and put a picture in, the number of albums in that it claims that my photos are rises, although there is a single visible on-screen. I don't know where these zombie albums are; Anyone know why this is happening? Thank you.

    Have you looked into the album recently deleted in the Photos App? When you delete photos they will reside in this album for 30 days unless you delete them from there immediately.

  • Photo Album using for screen saver

    I would like to use a photo album for my screensaver. I did it in the past with iPhotos and Photos.

    Using OS 10.11.16 on MacBook Air

    Photos 1.5

    I moved my old library of Photos on a hard drive that I needed storage space.

    Succeeded in creating a new photo library.

    Went in system preferences to set up the screen saver as I did in the past.

    Can 'see' the new photo library, but it is shaded on so I can't choose it as my screensaver.

    I opened and closed applications and restart the computer.

    I could choose a picture of pictures for my desktop image

    Have you turned on the photo library as your system library system in Photos preferences > general tab, after you have created the new photo library?

    "Use as a Photo library system" option should be grayed out in the Photos > Preferences > general, when you view the library you want to use for your saving screen and with other applications.  If 'Use as a Photo library system' is not grayed out, click it.  Then log market once again before trying to activate your album as a source of the screen saver.

Maybe you are looking for

  • Update Radeon Mobility graphics cards

    As you have probably found ATI are not very next with new mobility drivers. The good news is that with a slight modification of the Catalyst drivers normal can be used, follow this link for instructions: http://forums.extremeoverclocking.com/showthre

  • Microsoft Office 2010 activation

    Hello My computer came with Microsoft Office 2010, but I need to activate it. I don't know where I would find the product key for it, if it exists. Can someone help me please? If there is no product key, this means that I have to buy the separately c

  • Mobile videos

    HelloWhen I try to move the videos I have on my desk to a top another folder the computer tells me that they can not be moved because they are in use in another program. I'm sure they aren't. Can you help me?

  • Windows 7 home started an update on 5/10 which were 19 updates. 10 hours later it is still updating.

    * Original title: last update of Windows 7 Windows 7 home started an update on 5/10 which were 19 updates.  10 hours later it is still updating. It seems that it is locked on the number 16.  How to exit the update?  What should I do after that?  I un

  • BlackBerry Smartphones BB 9320 Emails displayed

    I have my email on my bb and it worked fine for years.  However, I sent an email to many recipients Wednesday and now even if I notificiation messages are received, I can't view by clicking on the Email icon, but only see messages text instead.  More