Javascript image slideshow - problems with speeding up!

Hi,
I found this http://www.serie3.info/s3slider/ very useful script for a slideshow I've integrated into a site I'm creating: http://217.78.81.39/
I have set it so the images and message changes every 11 seconds, however if you stay on the page for a little while it will get faster and faster and go berserk!
Does anyone have any ideas why this might be?
Thanks

Hmm.. even if you leave the site up for say half an hour and come back to it?
It's happening on ff and IE7 and also my client's browser which I believe to be IE7.

Similar Messages

  • Spry Image Slideshow problems with IE?

    I have set up the Spry Image Slideshow widget and it works beautifully in Firefox and Chrome.  I'm having the same problems others have had.  I've read through the various discussions on here and have sorted some of them but am still stumped on a couple things!
    Here is the link to where I have it currently uploaded for testing purposes:  www.wohowebdesign.com/sidestrand/gallery.php
    My first problem was how the images just would not flow, skip all over and freeze.  After I changed the DOCTYPE, this problem was gone.
    My Second problem is now the images are blending ok, but when you go to use the controls to pause or click the arrows, a vertical line appears and does not go away. This is still occuring on my local computer tests, but the uploaded version seemed to work itself out... I have no idea how!!
    My third problem is the alignment of the whole gallery box will not line up properly on the page.  It is shifted to the right and this only happens when I view it in IE8 (not Firefox or Chrome).  Unfortunately most of our school uses IE8 so I need to have it working perfectly before I put the new site live.
    Any help or suggestions are greatly appreciated!
    Thank you,
    Debbie

    mdr4win wrote:
    i dont think you understood my question, wasnt about body background, but abut the spry image slideshow to work properly in IE
    I was not talking about body background, but about having markup that screws up your document when using a browser. Body background just happened to be there. Perhaps you would do well to have a look here http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Flittletreats.org%2F.
    I have noticed that you ignored my solution; your document still shows two bodies.
    Perhaps I should have mentioned that I tested in IE6 through to IE9 using IETester and the above was the only thing stopping IE from performing properly.
    How did you determine that the slideshow was not working correctly in IE and which versions of IE?
    Grumps

  • Image Gallery, problems with Flash player 9 and Opera 9

    Hi, I'm developing a slideshow in flash (and php, JavaScript,
    XML).
    I'm coding in classes and AS2.
    I use the ExternalInterface class to communicate between
    swf's and html.
    The problem is that the Slideshow won't work properly in the
    Opera browser,
    it seems like it's working fine, but after a few click it
    stop responding.
    No problems in IE and FF.
    I've search and search to find a solution to this problem
    with no luck.
    I've put up an example of the slideshow here:
    http://www.coldminer.com/up/sw.php?thumbs=1
    The strange thing is that when I use really simplified
    versions of the code
    I'm using (with no externalInterface etc) it is working fine:
    http://www.coldminer.com/ftest/
    Anyone who have experienced similar problems, and can guide
    me to a solution.
    Opera version: 9.02 (8585)
    Flash player version: 9,0,16,0
    Thank you!
    ** Edit ->
    I found a solution, I replaced th ExternalInterface with the
    "Flash JavaScript Integration Kit",
    and all my problems with Opera was solved.

    Lo stesso problema ce l'ho io. Sembra che flash player 9 non
    riesca a leggere le versioni flash 5. Nell'installare un corso
    contenente flash 5 ho questo errore:
    Prodotto: Corso Multimediale per Photoshop 7 -- Errore 1904.
    Impossibile registrare il modulo C:\WINDOWS\system32\swflash.ocx.
    HRESULT -2147319780. Contattare il personale di supporto.

  • Image Slideshow problem ?

    The following is the code for the image slideshow which I've created ..
    The problem in this application is that when it reaches  the 4th image and after ending the effects of the 4th one it abruptly displays the 1st image rather than displaying it  by increasing the transperancy effect. I don't know where did i get  wrong. Any help on this guys..
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <s:Sequence id="homeSlideShow1">
                <s:Animate id="homeImage12"
                           duration="3000"
                           effectEnd="homeImage4.alpha=0;"
                           target="{homeImage1}">
                    <s:SimpleMotionPath property="alpha"
                                        valueFrom="0" valueTo="1"/>
                </s:Animate>
                <s:Animate id="homeSlideshow12"
                           duration="3000"
                           target="{homeImage2}"
                           effectEnd="homeImage1.alpha=0;">
                    <s:SimpleMotionPath property="alpha"
                                        valueFrom="0" valueTo="1"/>
                </s:Animate>
                <s:Animate id="homeSlideshow13"
                           duration="3000"
                           effectEnd="homeImage2.alpha=0;"
                           target="{homeImage3}">
                    <s:SimpleMotionPath property="alpha"
                                        valueFrom="0" valueTo="1"/>
                </s:Animate>
                <s:Animate id="homeSlideshow14"
                           duration="3000"
                           target="{homeImage4}"
                           effectEnd="homeImage3.alpha=0, homeSlideShow1.play();">
                    <s:SimpleMotionPath property="alpha"
                                        valueFrom="0" valueTo="1"/>
                </s:Animate>       
            </s:Sequence>
        </fx:Declarations>
        <s:BorderContainer x="100" y="167.15"
                           id="home_slideshow"
                           width="700" height="300"
                           dropShadowVisible="true"
                           creationComplete="homeSlideShow1.play()">
            <mx:Image x="0" y="0"
                      id="homeImage1"
                      width="700" height="300"
                      source="../HomeSlideshow/1.png"/>
            <mx:Image x="0" y="0"
                      id="homeImage2"
                      alpha="0"
                      width="700" height="300"
                      source="../HomeSlideshow/2.jpg"/>
            <mx:Image x="0" y="0"
                      id="homeImage3"
                      alpha="0"
                      width="700" height="300"
                      source="../HomeSlideshow/3.jpg"/>
            <mx:Image x="0" y="0"
                      id="homeImage4"
                      alpha="0"
                      width="700" height="300"
                      source="../HomeSlideshow/4.gif"/>
        </s:BorderContainer>
    </s:Application>

    The problem is in the fact that you never set the homeImage4.alpha to 0 at any stage.
    A workaround to this problem would be replacing your <s:Sequence /> with the following
    <s:Sequence id="homeSlideShow1">
    <s:Animate id="homeImage12"
       duration="3000"
       effectStart="homeImage4.alpha=0"
       effectEnd="homeImage4.alpha=0;"
       target="{homeImage1}">
    <s:SimpleMotionPath property="alpha"
    valueFrom="0" valueTo="1"/>
    </s:Animate>
    <s:Animate id="homeSlideshow12"
       duration="3000"
       target="{homeImage2}"
       effectEnd="homeImage1.alpha=0;">
    <s:SimpleMotionPath property="alpha"
    valueFrom="0" valueTo="1"/>
    </s:Animate>
    <s:Animate id="homeSlideshow13"
       duration="3000"
       effectEnd="homeImage2.alpha=0;"
       target="{homeImage3}">
    <s:SimpleMotionPath property="alpha"
    valueFrom="0" valueTo="1"/>
    </s:Animate>
    <s:Animate id="homeSlideshow14"
       duration="3000"
       target="{homeImage4}"
       effectEnd="homeImage3.alpha=0">
    <s:SimpleMotionPath property="alpha"
    valueFrom="0" valueTo="1"/>
    </s:Animate>
    <s:Animate id="homeSlideshow15"
       duration="3000"
       target="{homeImage4}"
       effectStart="homeSlideShow1.play();">
    <s:SimpleMotionPath property="alpha"
    valueFrom="1" valueTo="0"/>
    </s:Animate>       
    </s:Sequence>
    Hope this helps,
    Balakrishnan V

  • Image printing problem with Photoshop and Lightroom specifically with 11X14 cuts off top of image and moves bottom border up. Windows 7 OS - Epson Printer is working properly.

    Have an unprecedented problem with printing 11X14 photos in both PS and Lightroom. The printer is operataing properly. Printing 81/2X11 correctly. Have double and triple checked all the printing settings and they are correct. Have checked with friends to no avail. This problem started yesterday. Widows 7 OS. Need help.

    You show the OS receiving an image from Photoshop, and the OS starting the Epson print driver and handing it part of the image, the driver connects to the printer, then the print driver fails. It looks like a bug in the Epson rasterizer, or the printer communication.
    You really need to talk to Epson.  Photoshop isn't involved in that error.

  • Weird image distortion // Problem with game

    Hello,
    Im making a tiled based multiplayer game and everything is going fine however Im having a problem with image displaying.
    Here is how it looks like when I play it on my server computer as well as on my laptop:
    [http://s278.photobucket.com/albums/kk112/beloxx/?action=view&current=ss.jpg]
    And here is how it looks when I play it on my brother's computer:
    [http://s278.photobucket.com/albums/kk112/beloxx/?action=view&current=ss2.jpg]
    The image on the latter computer is distorted.
    I used to test my game on that computer before and everything was fine. I tried rebooting it but its still not displaying right. Right after I run the game the image is fine for a split second and then it becomes distorted...
    Did anyone have a similar problem?
    Here is the link to my home computer server:
    [http://belox.gotdns.com]
    or just go to:
    [http://74.56.212.14]
    The server may be slow or down so dont get frustrated if it take slong to load.
    Could you tell me whats your images look like when u run the game?
    Id really appreciate it if you helped me.

    Ok, the server is up and running right now so could you guys go to [ http://belox.gotdns.com| http://belox.gotdns.com] and see if your background image is distorted like in the screen shot above?
    Thanks

  • Image Capture problems with my MacBook

    When i plug in my camera macbook three different icons show up with it in finder and two different icons show up with it in image capture. my problem is that none of my pictures will show in my image capture. ive never had a problem with this before. please help

    when i plug my camer into my macbook*

  • Problem With Speed

    Hi, I have a problem with my download speed. Before (couple months ago) my connection was just fine and my download speed was 2.3MB/s (Speed Before) and now my download speed the fastest it goes is 400KB/s mainly 300+ (Speed Now), so what may be the cause? And does the old broadband box 1.0 affect the speed in any way and can I change it to a newer one?

    welcome to the BT community forum where customers help customers and only BT employees are the forum mods
    your links don't help sorry as they just show numbers without any other information
    in order for the forum members to help please can you post the adsl stats from your router may need to 'show detail' to get all stats (if hub enter 192.168.1.254 in your browser and navigate to adsl or use a-z, if netgear enter 192.168.0.1) and run  btspeedtester  (MAC users may have problems). when first test completes then run diagnostic test and post the results .
    are you connected directly via a filter to the NTE5 master or test socket or to somewhere else? Is the master the only phone socket in your home?
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    Someone may then be able to offer help/assistance/suggestions to your problem
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Image size problem with Retina Macbook Pro

    I exported raw images to Jpg and then resized as 1200 x 800 resolution images through "Easy batch Pro" app. When I uploaded them, they were extremely large. I've tried it several times and the result was always the same. Is it a problem with "Easy batch Pro" app, or something with Retina Display resolution? I also resized them as small size like 600x400, but the image was totally broke, and apparently had different look when I saw the original via aperture. What should I do?

    What's the problem exactly?  Call and complain.  It's up to them on how they want to handle it, but if it's something normal or minor, they'll just fix the issue under warranty and send you on your way.  That's how warranty works.  In instances where a user has had repetative failure of the same kind or others with the same system, a complete replacement was done, but those were issues that border on the "it's a lemon" idea.

  • Problems with Speed, Accounts and External HD in Leopard

    *This is my setup:*
    Two Macs: 1. Macbook 2.2ghz with N capability
    2. Macbook Pro with N capability
    Router: Airport Extreme (802.11n) bought two days ago. Therfore new
    Software: All uppgraded & OS X Leopard
    Problem:
    - Could not connect to other accounts in the network after upgrading software with Leopard
    - Could not connect to airport disk
    Message: "Connecting..." in finder, but it never does, but both acc and hd shows up in finder doh.
    Also there is an issue with speeds, i have set it too 5ghz and only N. The speed is overall 0.5mb pr second or slower when i send fils. It should be around 5-10 mb pr second i think. So this is not funny

    Hi Nick,
    Avoid the WD files completely, not needed & often a problem.
    You need to erase the Drive, & to use it on both Format it MS-DOS/FAT32, on the Mac or PC, but will have a 4 GB filesize limit, as well as other limitations.
    One option not mentioned yet is MacDrive for your PCs... allows them to Read/Write  & Format HFS+, so no need to reformat it...
    http://www.mediafour.com/products/macdrive/

  • Photoshop CS5 - Image resize problem with move tool

    Hi People
    Here's my problem
    When I try to resize an layer using the move tool (as opposed to the Free Transform tool), while I'm in the process of moving the scaling handles, the bounding box reflects my movement but the layer preview stays at it's original size. When I stop moving the handles there is a few seconds delay and then the new scale size shows up. If I try to move the handles again, without commiting to the transform, the layer preview reverts back to it's original size until I've finished moving the handles.
    I didn't have this problem with CS4 and I've only recently upgraded. I work around this problem by using the proper Free Transform tool (ctrl+t) but it would be nice to know why the hell this happens. It seems to me to be more of a graphical glitch than a software preference but I thought I'd check just-in-case.
    Specs:
    Photoshop CS5 V12.1 x64
    PC
    Intel Xeon W3505 @2.53GHz
    Nvidia Quadro FX580
    12 GB RAM

    ace591 wrote:
    Hi People
    Here's my problem
    When I try to resize an layer using the move tool (as opposed to the Free Transform tool), while I'm in the process of moving the scaling handles, the bounding box reflects my movement but the layer preview stays at it's original size. When I stop moving the handles there is a few seconds delay and then the new scale size shows up. If I try to move the handles again, without commiting to the transform, the layer preview reverts back to it's original size until I've finished moving the handles.
    I also read you you tried updating your video dirvers and your syste crashed and you had to roll back.   Make sure you have downloaded the latest correct drivers. If that does not work try turning off Open GL in photoshops preferences.
    On my old XP 32 bit system CS5 movet tool with transform dialog does not fail like on your system. I can move the handles time and time again without commiting the transform. The only way to have Photoshop revert the transform back to the original state is to press the ESC key to cancel the uncommitted transform.

  • SPRY image display problem with data sets!   "

    Dreamweaver CS4
    I really want to use a Spry Data set created with an HTML table (versus XML)
    I've done this step by step several times(after changing local sites and images) and every time I preview the results, each one of my images has a "> in front of it.
    I don't know how to get rid of this "> character!
    I've provided two HTML files used to create this:
    TABLE.html is the source
    SpryTable.html is the actual file pulling TABLE.html for data
    The images are images, I'm not going to provide them since anyone can add a random image just to see if the "> appears.
    I'm not going to include the java files since dreamweaver generates them on their own.
    Thanks!

    Jason, the best place for us to analyze your files is from a server. Have you uploaded them?
    The second best place is in a set of site files...including the HTML table, the display file that uses the HTML table, the CSS and javascript file.
    Without those, it is pretty nigh impossible to work this problem!
    I suspect the errant character appears somewhere in your data table, but based on what you have shown us, it's hard to say.
    When you defined the dataset, did you indicate that the column containing the images is type="HTML"? If you have left it as type="string", it is interpreting the > as text.
    Beth

  • Image Link Problem with Dreamweaver CS4?

    On my website, I have several images that link to other parts on my website. These work no problem when I preview the site, but after I test the links, the images that had those links have purple outlines that really clash with my website's design. Will users see this if they click on my links, and then return to the page? I'm using CS4 right now, and never recalled having this issue come up when using MX. Thanks for the help.

    I got stuck on this one too - not realising that Dreamweaver automatically palces a border on every image link - but the simplest way I found was to have my "Properties" panel showing on the bottom and input 0 into the "Border" box. By having this panel open you can see if you have accidently applied any styles to the image, where it links to, Image size attributes and the Image name.

  • Problem with speed after adding external html "template

    HI
    I created nice looking  html "template" for my site in program Aristeer 2. Basicly it created 3 files for me- *.HTML (about 10kb) *.CSS(avout 25kb) and *.js(javascript about 7kb). I was thinking that it will work perfectly ,when i will just define new dreamweaver site and open the html file in my Dreamweaver CS3.
    problem is,that everything ,what i want to do,in this site takes enormly long time...if i just click to open my html file,it takes about 2 minutes to open it,later,when am trying to delete some picture,delete some text,add some ApDiv,create table etc,it takes really a lot of time to do it...
    am just wondering why,cos am still working with ,lets say,small files,so where is the problem?
    can please somebody help me how to fix it? (when i open another site,that i designed all by Dreamweaver CS3,there is no problem like that....)
    thanks a lot
    radko

    I have no idea what the problem is.  I did download your page and I have no idea how you can even work with that file in DW.  Every time I moved my cursor, the elements either disappeared or reappeared as I moved over the page.
    Looks like every element on that page has been placed inside an absolutely positioned div which may or may not account for the 'slowness'..
    I did notice a lag (slowness) with the mouse movement - but once I managed to get open a content container, I did paste some text into it but it was all very slow.
    I' put it down to the way the page has been created honestly.  Even though it validates and no errors were found, that really is not the best way to create a web page.  (sorry).  I realise YOU did not create it, it was an automated process - I'd stay well away from it in future  :-)

  • Mail attachment image caching problem with C7

    Using C7-00 and Mail for Exchange with up to date software. I received two Mobile Boarding Pass emails from Lufthansa for my flights. These emails contain barcode.gif as an attachment that one can show at the gate when boarding. Now the two emails contain attachment with same name (barcode.gif) and the images are equal in size too. The problem is that for the second mail the phone shows the attachment of the first email!
    I have read that Symbian^3 has for performance reasons aggressive image caching feature. But in this case this causes a real nasty bug!
     - Juha

    I have found a solution.
    In the IMG src tag we had been using /images/gfx/image.gif
    By changing this to /./images/gfx/image.gif the images are no longer cached and update immediately when changed.
    PQ

Maybe you are looking for

  • Xserve Processor One maxed out

    I have an Xserve running 10.4.10, 2GB ram, three 500GB drives, two mirrored, 600 users, attached to Open Directory Master. It is a near clone of a 3 other Xserves based on grade level. Every single morning we have to hard restart. The upper lights fo

  • Apple Mail: IMAP mails automatically read!

    I am experiencing a strange problem with Apple Mail. I have several IMAP accounts set up. Since a couple of weeks my incoming emails are automatically set to "read" by the app. Can anyone help? Eric Bartels

  • Camera RAW issues with Canon T4i

    I have many, many cameras and have used Photoshop and Bridge for years.  Even though the latest updates for Camera RAW says it can handle the T4i, I tried opening these files on two separate computers, both running Win 7 64 bit, and my having Photosh

  • Third-Party Wireless-G Adapter w/10.4.2?

    Any good recommendations? As noted in a different thread I picked up a Belkin 7000, but I cannot get it to be recognized as an Airport card (Belkin says they do not support Tiger at all, but I've read reports from people who say they've gotten it to

  • How do I configure my custom step type to call its Express VI configuration dialog box each time I double click the step?

    By double clicking on a step in the TestStand Sequence Editor the Properties dialog box pops up. How to change this behaviour? I would like to configure my step type so that each time I double click the step, the Express VI configuration dialog box p