Next / previous image swap WITH larger image popup

Very simply what I need to do is almost identical to what you
see here:
http://www.java-scripts.net/javascripts/Slide-Show-Script.phtml
(scroll down to the animal pictures)
When you click "next" and "previous" the images swap through
a series
called "img1.gif" "img2.gif" and "img3.gif"
So far so good. However let us assume there is also a set of
images called
"img1_lrg.gif" "img2_lrg.gif" and "img3_lrg.gif" which are
larger
versions of those little thumbnails. I need for the
appropriate associated
large image to popup in its own window when the thumb is
clicked.
Has anyone a lead on something like that?
Thanks very much.

On Thu, 28 Sep 2006 17:59:37 +0000 (UTC), [email protected]
(Clay)
wrote:
>Very simply what I need to do is almost identical to what
you see here:
>
>
http://www.java-scripts.net/javascripts/Slide-Show-Script.phtml
>
>(scroll down to the animal pictures)
>
>When you click "next" and "previous" the images swap
through a series
>called "img1.gif" "img2.gif" and "img3.gif"
>
>So far so good. However let us assume there is also a set
of images called
>
>"img1_lrg.gif" "img2_lrg.gif" and "img3_lrg.gif" which
are larger
>versions of those little thumbnails. I need for the
appropriate associated
>large image to popup in its own window when the thumb is
clicked.
>
>Has anyone a lead on something like that?
>
>Thanks very much.
That sounds simple, where are you stuck? Do you not know how
to open a
popup? BTW, the JustSo Picture Window extension would be
perfect for
the popups.

Similar Messages

  • Internet Explorer's forward/backward for next/previous image

    In addition to right/left arrow to move to next/previous image I would like LR team to add this keyboard shortcut:
    Use Internet Explorer's forward for next image.
    Use Internet Explorer's backward for previous image.
    Here is the reason. I have ViewSonic mouse with five buttons. Extra two buttons I use for forward/backward command within Internet Explorer. It would be nice if the same two extra buttons I could use in LR.
    At the moment I have the two extra buttons programmed to function as right/left arrow. That allows me to use them to go next/previous image in LR. In order to use them as a forward/backward command within IE I have to press Alt key.
    It would be nice if LR team could add IE forward/backward to the list of keyboard shortcuts.
    Best regards,
    Ivan Kmecko

    This is a function of the mouse driver...you should be able to configure settings based on the current application so LR and IE can use the same keys but it'll mean different things in each app.

  • Cursor keys do not properly change to next/previous image

    Since a few days, one of my two Lightroom-computers shows a permanent, quite annoying bug, regarding the curser left/right key:
    It happens in loupe view:
    When I press the cursor-right key, Lightroom doesn't change to the next image
    Instead, it doesn't stop changing to the next image before it reaches the end of the folder .
    Correspondingly with cursor-left, which takes me always to the first image in of the folder...
    Browsing in loupe view is nearly impossible, just the mousewheel still allows to change to the next/previous image.
    This happens for all sets, catalogues, folders, etc. If I have selection, then it takes me to the first/last image of the selection, nothing in between possible.
    Any advice, what went wrong with my system? Everything was smooth a few weeks ago, and everything works fine on my other computer, which should just behave the same...
    Thanks for any hints!
    Harald

    After hours of testing, I identified the reason:
    The problem was raised by the service "skdaemon.exe".
    It's meant to be a keyboard enhancing utility, which was preinstalled (und later updated) on this computer.
    After deactivation (from autostart), LR works fine again, and I didn't notice any missing keyboard functions yet.
    Maybe, this helps someone else in getting around that problem, and thanks for the support.
    Harald

  • Next/previous image in imageslider

    Hi there. I can't seem to get the next/previous buttons working. I get the error "
    1061: Call to a possibly undefined method addEventListener through a reference with static type function
    What's going wrong?
    This is the code:
    import fl.containers.UILoader;
    //Declaring Variables
    var menu:MovieClip = menuMc;
    // var prevBtn:MovieClip = menuMc.prevBtnMc;
    // var nextBtn:MovieClip = menuMc.nextBtnMc;
    var playBtn:MovieClip =  menuMc.playBtnMc;
    var stopBtn:MovieClip =  menuMc.stopBtnMc;
    var nextBtn:MovieClip =  menuMc.nextBtnMc;
    var prevBtn:MovieClip =  menuMc.prevBtnMc;
    var imgFolder:String = "imgs/"
    var imgArray:Array = new Array("1.jpg","2.jpg","3.jpg","4.jpg","5.jpg","6.jpg","7.jpg","8.jpg");
    var imgLoader:UILoader = imgLoader;
    var imgCntr:uint = 0;
    var imgCntrTotal:uint = imgArray.length;
    var imgRequest:URLRequest = new URLRequest(imgFolder + imgArray[imgCntr]);
    var imgCntrTxt:TextField = menu.imgCntrTxtTf;
    var slideShowTimer:Timer = new Timer (5000,0);
    var imgVisible:Boolean = true;
    //Init
    playBtn.stop();
    stopBtn.stop();
    nextBtn.stop();
    prevBtn.stop();
    imgLoader.load(imgRequest);
    imgCntrTxt.text = (imgCntr).toString() + "/" + imgArray.length.toString();
    //Events
    //Play
    playBtn.addEventListener(MouseEvent.MOUSE_DOWN,playBtnDown);
    playBtn.addEventListener(MouseEvent.MOUSE_OVER,playBtnOver);
    playBtn.addEventListener(MouseEvent.MOUSE_OUT,playBtnOut);
    //Stop
    stopBtn.addEventListener(MouseEvent.MOUSE_DOWN,stopBtnDown);
    stopBtn.addEventListener(MouseEvent.MOUSE_OVER,stopBtnOver);
    stopBtn.addEventListener(MouseEvent.MOUSE_OUT,stopBtnOut);
    //Next
    nextBtn.addEventListener(MouseEvent.MOUSE_DOWN,nextBtnDown);
    nextBtn.addEventListener(MouseEvent.MOUSE_OVER,nextBtnOver);
    nextBtn.addEventListener(MouseEvent.MOUSE_OUT,nextBtnOut);
    //Previous
    prevBtn.addEventListener(MouseEvent.MOUSE_DOWN,prevBtnDown);
    prevBtn.addEventListener(MouseEvent.MOUSE_OVER,prevBtnOver);
    prevBtn.addEventListener(MouseEvent.MOUSE_OUT,prevBtnOut);
    //Timer
    slideShowTimer.addEventListener(TimerEvent.TIMER,timePassed);
    //EventHandlers
    //Play
    function playBtnOver(e:MouseEvent){
              playBtn.gotoAndStop(2);
    function playBtnOut(e:MouseEvent){
              playBtn.gotoAndStop(1);
    function playBtnDown(e:MouseEvent){
              //Slideshow / Timer starten
              slideShowTimer.start();
    //Stop
    function stopBtnOver(e:MouseEvent){
              stopBtn.gotoAndStop(2);
    function stopBtnOut(e:MouseEvent){
              stopBtn.gotoAndStop(1);
    function stopBtnDown(e:MouseEvent){
              // Slideshow / Timer Stoppen
              slideShowTimer.stop();
    //Next
    function nextBtnOver(e:MouseEvent){
              nextBtn.gotoAndStop(2);
    function nextBtnOut(e:MouseEvent){
              nextBtn.gotoAndStop(1);
    function nextBtnDown(e:MouseEvent){
              nextImg.play();
    //Previous
    function prevBtnOver(e:MouseEvent){
              prevBtn.gotoAndStop(2);
    function prevBtnOut(e:MouseEvent){
              prevBtn.gotoAndStop(1);
    function prevBtnDown(e:MouseEvent){
              prevBtn.play();
    //SlideShowTimer
    function timePassed(e:TimerEvent){
              imgLoader.addEventListener(Event.ENTER_FRAME,fadeImg);
    //Functions
    function fadeImg(e:Event){
              if(imgVisible == true){
                        imgLoader.alpha = imgLoader.alpha - 0.05;
                        if(imgLoader.alpha <= 0){
                                  imgVisible = false;
                                  nextImg();
              if(imgVisible == false){
                        imgLoader.alpha = imgLoader.alpha + 0.05;
                        if(imgLoader.alpha >= 1){
                                  imgVisible = true;
                                  imgLoader.removeEventListener(Event.ENTER_FRAME,fadeImg);
    function nextImg(){
              if(imgCntr < imgCntrTotal){
                        imgCntr++; //staat gelijk aan imgCntr + 1
              }else{
                        imgCntr = 0;
                        imgRequest = new URLRequest(imgFolder + imgArray[imgCntr]);
                        imgLoader.load(imgRequest);
                        imgCntrTxt.text = imgCntr.toString() + "/" + imgCntrTotal.toString();
    function prevImg(){
              if(imgCntr == 0)
                        imgCntr = imgArray.length -1;
                        imgCntr--;
                        imgRequest = new URLRequest (imgFolder + imgArray [imgCntr]);
                        imgLoader.load(imgRequest);
                        imgCntrTxt.text = imgCntr.toString() + "/" + imgCntrTotal.toString() ;
    function tfF():void{
        imgCntrTxt.text = (imgCntr+1) + "/" + (imgCntrTotal);
    Help much appreciated

    says this now about
    Scene 1, Layer 'As', Frame 1, Line 103
    1180: Call to a possibly undefined method prevBtn.
    related code:
    var prevBtn:MovieClip =  menuMc.prevBtnMc;
    //Previous
    prevBtn.addEventListener(MouseEvent.MOUSE_DOWN,prevBtnDown);
    prevBtn.addEventListener(MouseEvent.MOUSE_OVER,prevBtnOver);
    prevBtn.addEventListener(MouseEvent.MOUSE_OUT,prevBtnOut);
    //Previous
    function prevBtnOver(e:MouseEvent){
              prevBtn.gotoAndStop(2);
    function prevBtnOut(e:MouseEvent){
              prevBtn.gotoAndStop(1);
    function prevBtnDown(e:MouseEvent){
              prevBtn();
    function prevImg(){
              if(imgCntr == 0)
                        imgCntr = imgArray.length -1;
                        imgCntr--;
                        imgRequest = new URLRequest (imgFolder + imgArray [imgCntr]);
                        imgLoader.load(imgRequest);
                        imgCntrTxt.text = imgCntr.toString() + "/" + imgCntrTotal.toString() ;

  • In imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

    in imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

    in imovie 11, with an iMac, latest Mountain Lion, sometimes I insert a still and when I playback, the previous image freezes the last frame and holds during the duration I set for the still, skips both transitions, and jumps to the next clip. why?

  • Preview: Preview Next or Previous Image w/o 1st selecting multiple images?

    I have a folder that contains images. I browse to that folder and click on any of them and Preview opens and I see the image just fine. I would like to browse the contents of this folder with Preview using the arrow keys to view the next or previous image in that folder. When I use the arrow keys I get nothing (just a boink sound). Should I be able to navigate the contents of a folder with Preview using the arrow keys? I have read through the help and didn't see anything not being able to navigate images.
    I edited my preview toolbar to include the Next and Previous buttons however these don't seem to work for images in the same folder.
    I click on drawer and it only shows the image that I clicked on that opened Preview; it does not show any of the other images that are within the folder...should it?
    If I select all (or more than one) image within the folder and then Click Open, Preview opens with the drawer containing the selected images. When I take this extra step, I am able to navigate the selected images in Preview with the up/down arrow keys or the Next/Prev buttons on the toolbar. Is there a way to bypass the multiple selection of images in order to navigate them with Preview or is that just the way it works?
    THx!
    Intel iMac   Mac OS X (10.4.9)  

    I have a folder that contains images. I browse to
    that folder and click on any of them and Preview
    opens and I see the image just fine. I would like to
    browse the contents of this folder with Preview using
    the arrow keys to view the next or previous image in
    that folder.
    ReidRik_Von,
    I suspect you may be "putting the cart before the horse." Try opening Preview first. Next, use the Open command from Preview's File menu, or Command + O on your keyboard, and then browse to the desired folder. Select the entire folder and press the Open button. If the Drawer opens and you find it obtrusive, close the Drawer.
    You should now find the Next and Previous arrow buttons you added to the Toolbar earlier should function; and if you have Full Keyboard Access enabled, you should be able to navigate the folder using the keyboard as well: Command + Right arrow for the next image, or Command + Left arrow for the previous...
    Good luck!
    Andrew99
    iMac 1 GHz Flat Panel 15" PPC 768 MB RAM   Mac OS X (10.4.9)  

  • Dynamic Image Gallery First, Next,Previous,Last

    had a friend help me build this but now he's gone and I don't
    understand arrays or coldfusion really. I have an image gallery
    that works beautifully except that I want to be able to add two
    behaviors to the page. 1.Pagination. 2. Display Record Count. (I
    know how to use the Dreamweaver built in Server Behaviors with
    Dynamic Tables but this is a little different from that b/c he's
    using arrays to build the table instead. I've almost go the
    pagination working. Except I can't figure how to show the last
    record. I've got "First, Next, & Previous" to work. But the
    "Last" doesn't. This is the part of the code that I'm concerned
    with as everything else is working.
    <cfset CountUp=Count + 10>
    <cfset CountDown=Count - 10>
    <p align="center"><cfif Count gte 1><a
    href="gallery.cfm">First</a></cfif>  <cfif
    Count gte 10><a
    href="gallery.cfm?Count=<cfoutput>#CountDown#</cfoutput>">Previous</a></cfif>  <cfif
    ArrayLen(PhotoArray) gt CountUp><a
    href="gallery.cfm?Count=<cfoutput>#CountUp#</cfoutput>">Next</a></cfif><cfif
    ArrayLen(PhotoArray) lt CountUp><a
    href="gallery.cfm?Count=<cfoutput>#CountUp#</cfoutput>">Last</a></cfif>
    I have no idea how to write the "Display record counts" so if
    someone can help me write that part I would be so greatful.
    Here is all of the code for this page attatched...
    Attach Code

    Your code is more complicated than it needs to be. I honestly
    didn't dig through it, but here are a few suggestions.
    Use ArrayLen(array[]) to count the number of rows in an aray.
    Use array[ArrayLen(array)] to find the last record

  • Aperture 3.4.1 automatically switches to the next or previous image

    For the past few weeks Aperture has been doing something really odd and extremely annoying. While I'm editing an image, aperture will suddenly move to the next image. It happens primarily when I'm using the stamp tool and am stamping adjustments onto the image. I lift adjustments from one and as I go to stamp the selected image, aperture suddenly moves to the next or previous image. Sometimes I will have go back to the image I am intending to edit as many as 5 times before it stays there.
    This is incredibly annoying and killing my workflow. Has anyone ever experienced this? If so, what can I do? Suggestions and/or more questions welcome.
    Thanks!

    Nah, "Highlight Priority Mode" was switched off.
    Here's the examples:
    1. This is my finished picture. The information is still avaliable in the preview. So this is what I wanted it to look like and how I remembered it.
    http://cl.ly/image/3I2D0V1L2O0Q
    2. This is how Aperture makes it look now!!!
    http://cl.ly/image/3B0o0a0r051g
    3. This is what it looks like when I make a copy from the original and then stamp the old settings onto it.
    http://cl.ly/image/1g0w0u152t3i
    Go figure. It's just random and did I mentioned that I am deeply frustrated with an otherwise excellent program? :-)
    If this is bound to happen with our pictures, how can we reliably work with this? I have paying clients who come back to me months and years after and need to have access to their stock of photos.

  • Problems with large scanned images

    I have been giving Aperture another try since 1.1 came out, and I am still having problems with large tiff files derived from scanned 4x5 negatives. The files are 500mb or more, 16 bit RGB, with ProPhoto RGB or Ektaspace PS5 profiles, directly out of the scanner.
    Aperture imports the files correctly, and shows their thumbnails. When I select a thumbnail "Loading" is displayed briefly, and the the dreaded "Unsupported Image Format" is displayed. Sometimes "Loading" goes on for a while, and a geometric pattern (looking like a rendering of random memory) is displayed. Restarting Aperture doesn't help.
    Lower resolution (250mb, 16bit) files are handled properly. The scans are from an Epson 4870 scanner. I have tried pulling the scans into Photoshop and resaving with various tiff options, and as PSD with no improvement. I have the same problem with corrected/modified psd files coming out of Photoshop CS2.
    I am running on a Power Mac G5 dual 2ghz with 8gb of RAM and an NVIDIA GeForce 6800 GT DDL (250mb) video card, with all the latest OS and software updates.
    Has anyone else had similar problems? More importantly, is anyone else able to work with 500mb files of any kind? Is it my system, or is it the software? I sent feedback to Apple as well.
    dual g5 2ghz   Mac OS X (10.4.6)  

    I have a few (well actually about 100) scans on my system of >500Mb. I tried loading a few and am getting an inconsistent pattern of errors that correlates with what you are reporting.
    I imported 4 files and three were troubled, the fouth was OK. I imported another four files and the first one was OK and the three others had your reported error, also the previously good file from the first import was now showing the same 'unsupported' image' message.
    I would venture to say that if you shoot primarily 4x5 and work with scans of this size that Aperture is not the program for you--right now. I shoot 35mm and have a few images that I have scanned at 8000dpi on my Imacon 848 but most of my files are in the more reasonable 250Mb range (35mm @ 5000dpi).
    I will probably downsample my 8000dpi scans to 5000dpi and not worry to much about it. In a world where people believe that 16 megapixels is hi-res you are obviously on the extreme side.(Good for you!) You should definately file a bug report but I wouldn't expect much help anytime soon for your super-sized scans.

  • Large image popup

    Hi,
    Does any one know of an extension which creates a large image
    popup on mouse over and it works with images from a database
    too.

    Hi Zabeth,
    Thanks for your reply!
    How exactly can i define the hotspot and not the image as the rollover? I guess i replace the:
    <a class="thumbnail" href="#thumb"><img src="sales1.1_thumb.jpg" width="80px" height="60px" border="0" /><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    with something like:
    <a class="thumbnail" href="#thumb"><map name="Map" id="Map"> <area shape="rect" coords="33,140,114,260" href="#" /></map><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    However this obviously doesnt work! Am i on the right direction!?
    Thanks

  • Large image popup on mouse over

    Does any one know of an extension which creates a large image
    popup on mouse over and it works with images from a database too?

    Does any one know of an extension which creates a large image
    popup on mouse over and it works with images from a database too?

  • The curser includes a text box from a previous image or link when the curser is positioned on the side of the page. i click and it goes away but only to return again on the next launched page. how do i get rid of this?

    the cursor includes a text box from a previous image or link when the cursor is positioned on the side of the page. it will mainly happen when i hit "back" from the page i was on. i click and it goes away but only to return again on the next launched page. i also keep several tabs open and it will carry over to any one of them i go to. how do i get rid of this?
    == This happened ==
    Every time Firefox opened
    == when i upgraded to most recent version 3.6.8

    A number of extensions can cause that problem, you'll need to do a little troubleshooting to find out which extension is causing that to happen for you.
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • When I try to move from one selected image to selecting a different image, lightroom (new install of Lightroom 5.5) will keep the previous image selected, so I always end up with two selected images - why?

    For example, I will select the first image in my grid view, then let's say I want to work on the fifth image. When I click on the fifth image, Lightroom leaves image one selected, as if I have held down the Command or the Shift key to select multiple images.  This is not what I expect. Then I am forced to command click the image I no longer want selected - this happens every time I try to move to any new image - the previous one(s) stay selected.  I have tried a reboot of my machine but still this happens.  Also, as a further bug, if I leave my grid with no images selected at all, after a few seconds Lightroom automatically selects the first two images in my library and highlights them - without my even pressing a key!  This is really weird behaviour. It's really frustrating as I like to use my keyboard arrow keys to move through my library of images, but when Lightroom keeps two images selected it just ping pongs between those two images.  I deselect and try to move on, and it again leaves the previous image selected!  By the way - I am not in Compare mode while this is happening - just in standard browsing of the library...  Help please!
    kind regards,
    oMac

    For example, I will select the first image in my grid view, then let's say I want to work on the fifth image. When I click on the fifth image, Lightroom leaves image one selected, as if I have held down the Command or the Shift key to select multiple images.  This is not what I expect. Then I am forced to command click the image I no longer want selected - this happens every time I try to move to any new image - the previous one(s) stay selected.  I have tried a reboot of my machine but still this happens.  Also, as a further bug, if I leave my grid with no images selected at all, after a few seconds Lightroom automatically selects the first two images in my library and highlights them - without my even pressing a key!  This is really weird behaviour. It's really frustrating as I like to use my keyboard arrow keys to move through my library of images, but when Lightroom keeps two images selected it just ping pongs between those two images.  I deselect and try to move on, and it again leaves the previous image selected!  By the way - I am not in Compare mode while this is happening - just in standard browsing of the library...  Help please!
    kind regards,
    oMac

  • Illustrator Image Trace doesn't work with large images

    Illustrator's Image Trace doesn't seem to work at all with large images.  The attached image shows the following:
    A) The original raster cropped tightly.
    B) Converting the raster with default "Black and White Logo" settings.  Results in 242 paths and 4792 anchors.
    C) Adding a massive amount of white space and then converting the raster with default "Black and White Logo" settings.  Results in 407 paths and 1620 anchors.
    For whatever reason Illustrator can't seem to handle large images.  This test shows it's not an issue with the image being too complex since all I've done is add white space and the file was saved without compression so there should be no noise.
    This type of glitch started with CS6 with the new Image Trace tool.  Is there a fix for this?  Maybe setting Image Trace into legacy mode?

    Moving to Illustrator forum.

  • Image swaps with fade out and in

    I am new to Dreamweaver, in fact only got into it to do my
    own website. I want to create image swaps with a fade out and then
    fade in with the new image. Nowhere can I find out how to do this
    so far. Can anybody point me in the right direction. Many thanks
    for your help now and in the past.
    Perspectivist

    This is a multi-part message in MIME format.
    --------------000605070301090808040601
    Content-Type: text/plain; charset=ISO-8859-1; format=flowed
    Content-Transfer-Encoding: 7bit
    i see! well, that's good to know. i didn't realize you could
    do
    transitions on image swaps (of course, i've rarely used them
    so far).
    and i just assumed the OP was actually trying to do a
    slideshow, which
    could still be the case i guess. i suppose he's covered
    either way!
    Nancy O wrote:
    > There are several image transition scripts on this page:
    >
    http://www.brothercake.com/site/resources/scripts/transitions/
    >
    >
    >
    > --Nancy O.
    > Alt-Web Design & Publishing
    > www.alt-web.com
    >
    >
    >
    > "Perspectivist" <[email protected]>
    wrote in message
    > news:[email protected]...
    >
    >> I am new to Dreamweaver, in fact only got into it to
    do my own website. I
    >>
    > want
    >
    >> to create image swaps with a fade out and then fade
    in with the new image.
    >> Nowhere can I find out how to do this so far. Can
    anybody point me in the
    >> right direction. Many thanks for your help now and
    in the past.
    >>
    >> Perspectivist
    >>
    >>
    >
    >
    >
    --------------000605070301090808040601
    Content-Type: text/html; charset=ISO-8859-1
    Content-Transfer-Encoding: 7bit
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <meta content="text/html;charset=ISO-8859-1"
    http-equiv="Content-Type">
    </head>
    <body bgcolor="#ffffff" text="#000000">
    i see! well, that's good to know. i didn't realize you could
    do
    transitions on image swaps (of course, i've rarely used them
    so far).
    and i just assumed the OP was actually trying to do a
    slideshow, which
    could still be the case i guess. i suppose he's covered
    either way!<br>
    <br>
    Nancy O wrote:
    <blockquote cite="mid:[email protected]"
    type="cite">
    <pre wrap="">There are several image transition
    scripts on this page:
    <a class="moz-txt-link-freetext" href="
    http://www.brothercake.com/site/resources/scripts/transitions/">http://www.brothercake.com /site/resources/scripts/transitions/</a>
    --Nancy O.
    Alt-Web Design &amp; Publishing
    <a class="moz-txt-link-abbreviated" href="
    http://www.alt-web.com">www.alt-web.com</a>
    "Perspectivist" <a class="moz-txt-link-rfc2396E"
    href="mailto:[email protected]">&lt;[email protected]&gt;</a>
    wrote in message
    <a class="moz-txt-link-freetext"
    href="news:[email protected]">news:[email protected]</a >...
    </pre>
    <blockquote type="cite">
    <pre wrap="">I am new to Dreamweaver, in fact only got
    into it to do my own website. I
    </pre>
    </blockquote>
    <pre wrap=""><!---->want
    </pre>
    <blockquote type="cite">
    <pre wrap="">to create image swaps with a fade out and
    then fade in with the new image.
    Nowhere can I find out how to do this so far. Can anybody
    point me in the
    right direction. Many thanks for your help now and in the
    past.
    Perspectivist
    </pre>
    </blockquote>
    <pre wrap=""><!---->
    </pre>
    </blockquote>
    </body>
    </html>
    --------------000605070301090808040601--

Maybe you are looking for