Simple Photo Slider

Hi All,
Can anyone help me with a code for a simple automatic photo
slider? It is really urgent.
I give some photos which it should be sliding automatically.
Waiting for your reply.
Thanking you in advance.

Hi,
Please find an excellent sample photo slider application at
the URL below. Application allows you to both select the images to
view or view them as slide show.
http://www.adobe.com/devnet/flex/samples/photo_explorer/
Hope this helps.

Similar Messages

  • HELP: Controlling speed of photo slider

    I need some help in controling the speed of this simple photo
    slider. Here's what I have.
    Individual movie clip(Photo):
    onClipEvent (enterFrame) {
    _root.xdist = (_root._xmouse-_root.xcenter)/20;
    Main Action:
    movieWidth = 300
    xcenter = movieWidth/2
    // this code loops right
    function movePiece (target) {
    with (target) {
    _x += xdist;
    if (_x>movieWidth+_width/2) {
    _x = -_width/2;
    if (_x<(0-_width/2)) {
    _x = movieWidth+_width/2;
    What action code, etc. can I put into this code to slow down
    the scrolling or control the scroll speed? Any help would be
    appreciated! Thanks

    Thanks, I can't believe I missed that. That worked. The
    higher the # the slower.
    Thanks-B

  • Photo Slide on Website

    I'm a novies in webdesign but have successfully published a
    simple site, Now I'm trying to do a more dynamic site. I created a
    photo slide in Fireworks, saved all the project in the 'Images'
    folder of the 'site root' directory. I created a link to slide in
    the 'photo gallery' page ;(
    http://www.juldelsen.com/Photo%20Gallery.html)
    the link to slide is 'Hon. Minister's Lis. Visit' picture. Clicking
    the link (
    http://www.juldelsen.com/H.M.%20Slide.html)
    instead of openning the tumbnails or the slide, blank page was
    displayed.
    Can someone rescue me by telling me what I'm doing wrong?
    or
    How do I create & publish a Photo slide with selectable
    box tumbnails on my website?

    juldelsen1 wrote:
    > I'm a novies in webdesign but have successfully
    published a simple site, Now
    > I'm trying to do a more dynamic site. I created a photo
    slide in Fireworks,
    > saved all the project in the 'Images' folder of the
    'site root' directory. I
    > created a link to slide in the 'photo gallery' page
    > ;(
    http://www.juldelsen.com/Photo%20Gallery.html)
    the link to slide is 'Hon.
    > Minister's Lis. Visit' picture. Clicking the link
    > (
    http://www.juldelsen.com/H.M.%20Slide.html)
    instead of openning the tumbnails
    > or the slide, blank page was displayed.
    >
    > Can someone rescue me by telling me what I'm doing
    wrong?
    > or
    > How do I create & publish a Photo slide with
    selectable box tumbnails on my
    > website?
    See if adding an underscore to the URL changes things.
    This:
    http://www.juldelsen.com/Photo_20Gallery.html
    instead of this:
    http://www.juldelsen.com/Photo
    20Gallery.html
    Linda Rathgeber
    [email protected]
    Adobe Community Expert-Fireworks
    http://www.adobe.com/communities/experts/

  • Modifying Photo Slide Show Template

    Hello All,
    I've never used Flash before, and I don't know any
    ActionScript. I am using Flash 8 Professional on Windows XP
    Professional. I believe my problem is fairly simple to solve, but I
    have not been able to find any information on the Internet. I would
    greatly appreciate any help. Thanks in advance.
    I am using the Photo Slide Show template, and I would like to
    add transition effects to it. Is this possible? If so, how would I
    go about doing it? Please help me. I appreciate your time and
    consideration.
    Thanks,
    Sisilla

    "ssookdeo" <[email protected]> wrote in
    message news:eab4vc$k5c$[email protected]..
    > Thank you for the advice. You are right, of course. I
    thought perhaps my problem had a "quick fix" solution, but I
    concede that I
    > was wrong. Thanks again.
    >
    > Sisilla
    Hi Sisilla,
    I was just thinking that if you need to get a nice slideshow
    with effects going on your website quickly you could use another
    program that specializes in just that. There are lots of
    these Flash slideshow programs that you can download. Here is one..
    http://www.amarasoftware.com/flash-slide-show.htm
    (I never tried it myself) If you put "Flash slideshow maker"
    in a google search you will see there are lots of em.
    Also, other Flash creation programs like SwishMax have
    built-in transition effects that you can use. It is much easier
    than trying
    to do the same thing in Adobe Flash. You could get your
    slideshow going quicker since it takes longer to learn Adobe Flash.
    luck,
    tralfaz

  • 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

  • How can I control the music that plays during Apple TV photo slide shows?

    I don't want to make my parents listen to Breaking Benjamin music as they watch my photo slide shows on Apple TV. Need something more sedate. But if a B.B. song is in my iTunes music library, it is a candidate for random selection as background music for my slide shows. How do I control what music plays during Apple TV photo slide shows?

    What I find is really silly, is the fact the music video's are listed under that artists albums in the Music menu. And when you go into the video 'album' (called 'Unknown' unless you change it) there is an option to shuffle the tracks. Clicking this just results in an error message. So, they should either remove that option if it is a video album, or, better yet, GET IT TO WORK. So silly of them to omit this.
    I have submitted feedback.

  • What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)

    I feel like I should know the answer to this. I can't believe it is a hard question.
    What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)
    Easy? Right?
    Just plug my iphone in to a mac and copy a photo from the mac to my iphone.
    I don't have internet access - I can't email it, or mobileme it, or dropbox it.

    iTunes. Other than that there is no direct method. However, do try the iPhone forums.

  • I am using photos . I add a camera and make my photos slide in.  How do I add a second behavior to the photo to make it slide out.  I want the photo to hold on the screen for a few seconds in between sliding in and sliding out.

    I am using photos in Motion 5.  I add a camera and make my photo slide in.  How do i add a second behavior to the photo to make it slide out?  I want the photo to hold for a few seconds in between sliding in and sliding out.  When I am trying to do this  I am not getting the photo to hold, i am making one continuous motion which I do not want.
    Thanks

    Are you using the "motion path" behavior? If so just duplicate it and drag it down the timeline to where you want it to start. Trim it to end at the end of the project. The gap you leave in the timeline between the two behaviors is your hold time. Not sure why you are using a camera unless you have a behavior on the camera.If you are using keyframes just set two keyframes at the same position values in the inspector for the hold time.

  • In iOS 4, you could make separate photo slide shows with separate songs.   In iOS 5, this has changed. Now only 1 song is allowed at a time. It will not save separate song selections for each slide show.  Is there any way to fix this? This is something I

    In iOS 4, you could make separate photo slide shows with separate songs.
    In iOS 5, this has changed. Now only 1 song is allowed at a time. It will not save separate song selections for each slide show.
    Is there any way to fix this? This is something I use every day.
    I am on an iPad 2, 32gb, wifi...
    Thank you

    My Photos app works the same on iOS 5 as it did on iOS 4 i.e. I can have a different track for each album. When I select a track for a photo album I then start the slideshow so that it shows the first couple of photos with the track playing - I'm not sure it's necessary to start the slideshow but I always do and it remembers that track for that album.

  • I need to do non-constrained crops for Ken Burns effect in photo slide show

    I am making photo slide shows in imovie '09. I understand the Ken Burns effect and how to set a start and an end point. I want to use the effect on vertical or portrait mode photos. i would like to have the entire photo displayed in portrait mode and have it zoom in a bit. The problem is The start and end points seem to only be horizontal or landscape mode. I can't ever get the entire image selected. How can I do this?
    Thanks,
    Tim

    You need to add the letterbox (black space) in another application. iMovie's Ken Burns effect will not do it for you. You can do it in Photoshop if you like.
    However, there is a way to do it in Automator, and you can do hundreds of vertical photos very quickly. That is the way I do it.
    Here is more detail:
    There is also a quick way to pad your images without using Photoshop. This method will pad hundreds of images in just a few seconds.
    You do it with a tool that comes with OS/X called Automator. It should be in your Applications/Utilities folder.
    Automator is basically a workflow tool. It allows you to string together commands and actions into a workflow and then execute the entire sequence at once. If you have Snow Leopard, you can even add these workflows to your contextual menus that come up when you right-click.
    There are many workflows that would work to pad your images. Here is an example:
    In Automator, start a photo workflow and drag the following actions into the workflow from the Action palettes on the left.
    You should have something like:
    1)Ask for Photos (You must select one or more photos and hit Select - you can make this easier by putting them in an album beforehand)
    2) Copy Finder Items (give it a folder to copy to- so you can find them easily)
    3) Pad Images. (put a check mark in "scale image before padding" Pick the pixel dimensions of your project...like 640x480 or 960x540. or 1920x1080
    Hit Run and a dialog box will come up asking you to select photos. When you are finished, press SELECT and the Automator script will keep running.
    Then at the end you should have padded images in the folder you created in step 2.

  • Making a Photo Slide show with Final Cut Express

    Hello, I am trying to incorporate pictures into my timeline mixed with video, how do I add movement to the pictures similar to how a photo slide show would look ?...Thanks in advance for your help!

    See if this helps at all
    http://www.fcpbook.com/Motion_Control_in_FCE.html

  • Photo Slider Mod

    I'm having some trouble with this photo slider. I want it to start on the latest addition instead of on the first. I already know how to do this with the text comments, but the photos are a mystery. Please help.
    <table border="0" cellpadding="0">
      <caption><strong>A Day in the Life!</strong></caption>
      <tr>
        <td width="100%"><img src="/life/a000.JPG" width="650" height="482" name="photoslider"></td>
      </tr>
      <tr>
        <td width="100%"><form method="POST" name="rotater">
          <div align="center"><center><p>
    <script language="JavaScript1.1">
    Photo Slider II- By Kevin Adams ([email protected])
    For this script and more
    Visit http://www.javascriptkit.com
    var photos=new Array()
    var text=new Array()
    var which=0
    var what=0
    //Change the below variables to reference your own images. You may have as many images in the slider as you wish
    photos[0]="/life/a000.JPG"
    photos[1]="/life/a001.JPG"
    photos[2]="/life/a002.png"
    photos[3]="/life/a003.png"
    //change coresponding description
    text[0]="Issue 0"
    text[1]="Issue 1"
    text[2]="Issue 2"
    text[3]="Issue 3"
    window.onload=new Function("document.rotater.description.value=text[0]")
    function backward(){
    if (which>0){
    window.status=''
    which--
    document.images.photoslider.src=photos[which];
    what--
    document.rotater.description.value=text[what];
    function forward(){
    if (which<photos.length-1){
    which++
    document.images.photoslider.src=photos[which]
    what++
    document.rotater.description.value=text[what];
    else window.status='End of gallery'
    function type()
         alert("This textbox will only display default comments")
    </script>
    <p><input type=text name="description" style="width:400px" size=50>
    <p><input type="button" value="<<Back" name="B2"
          onClick="backward()"> <input type="button" value="Next>>" name="B1"
          onClick="forward()"><br>
          <a href="#" onClick="which=1;what=1;backward();return false"><small>Start Over</small></a></p>
          </center></div>
        </form>
        </td>
      </tr>
    </table>
    <p align="center"><font face="arial" size="-2">This free script provided by</font><br>
    <font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript
    Kit</a></font></p>Thanks much.
    Zach the Webmaster
    www.soniccomic.com

    Not to be mean or anything, but this is Java forum, not a JavaScript forum...There is no relation. I'm telling you this, because you won't recieve any help here, possibly do a google search for a webmasters forum, and they will be sure to help.

  • Im making a photo slide show using imovie. how will i make a dvd copy that can play in both pc and dvd player.  i dont have an idvd anymore. m using a mbp early 2011 osx 10.8.5

    im making a photo slide show using imovie. how will i make a dvd copy that can play in both pc and dvd player.  i dont have an idvd anymore. m using a mbp early 2011 osx 10.8.5.
    after making the photo slide show, i clicked share>export movie.  after which i burned using toast. the file became a .mov.  i tried playing it in my mac and it worked. my fear now is will it also play in a regular dvd?... i read from google that mov files won't run in dvd players.  what format should i convert it to so it'll play in a dvd player.  can you suggest a faster way i can burn my projects for it takes me almost an hour to export.  im going to make 28 slideshows for my kids in school. *=( if i need to do this process 28 times, i may not be able to finish it on time.  please suggest a software or an alternative as to how i should do this... m more comfortable using imovie than iphoto.  thanks and i hope to hear from someone soon *=j

    Thank you QuickTimeKirk...used toast to burn project... my project was in .mov, i tried to play it a dvd player, it did play... will try again tomorrow using another dvd player just to be sure it'll will really work with dvd players.  thank you again for your reply *=)

  • Simple photo gallery

    I used a very old version of Fireworks some time ago, which I
    think had the ability to do this but I'm now uing CS3 and wanted to
    know:
    I would like to create a simple photo gallery whereby there
    is a grid of 4x3 image thumbnails and then when you click on one of
    the thumbnails it enlarges the photo to take up the occupied space
    of where the thumbnails exist - click close and then it takes you
    back to the thumbnails.
    Is there any way of doing this in CS3? I'm presuming I could
    use slices and layers with hotspots but I'm not entirely sure how -
    are there any tuturials on this.
    Thanks in advance for any help on this subject.

    Hi,
    Not exactly what you're asking for but are you aware of the,
    new to CS3,
    'Create SlideShow' Command?
    There are six (I think) different layouts, one of which may
    suit.
    An example of one I threw together can be seen here
    http://www.fasterthanu.com/
    There are also a couple of links on bridge to tutorials as
    well as some on
    the Adobe site
    Peter
    "greencode75" <[email protected]> wrote in
    message
    news:fgjvai$qg$[email protected]..
    |I used a very old version of Fireworks some time ago, which
    I think had the
    | ability to do this but I'm now uing CS3 and wanted to know:
    |
    | I would like to create a simple photo gallery whereby there
    is a grid of
    4x3
    | image thumbnails and then when you click on one of the
    thumbnails it
    enlarges
    | the photo to take up the occupied space of where the
    thumbnails exist -
    click
    | close and then it takes you back to the thumbnails.
    |
    | Is there any way of doing this in CS3? I'm presuming I
    could use slices
    and
    | layers with hotspots but I'm not entirely sure how - are
    there any
    tuturials on
    | this.
    |
    | Thanks in advance for any help on this subject.
    |

  • Screen Saver Photo Slide Show...

    ...Hello... This used to work but for some reason it doesn't any more. Whenever I go to the screen saver preferences and choose a folder full of pictures to use as a photo slide show screen saver, it says 'folder contains no pictures'. However, is DOES contain pictures but won't recognize them. All the other screen saver features work besides this one. I tried to download and install some screensaver a while back and it hasn't worked since then... Any ideas? Thanks =)
    G4   Mac OS X (10.4.6)  

    So glad we were able to be helpful, Apple has some guidelines for acknowledging this:
    ========================================================================
    IF YOU ARE THE AUTHOR OF THE ORIGINAL QUESTION:
    ========================================================================
    When you return to view the answers, please mark responses appropriately. Simply login and select the value you desire for applicable responses. As the author of the original question, you may assign a helpfulness value to responses. Please use the following when rating a response:
    None: The response was simply a point of clarification to my original question or didn't really help.
    Helpful: This response helped with a portion of my question, but I still need some additional help.
    Solved: This response has solved my problem completely.
    WHY SHOULD I DO THIS?
    In short, here are 3 reasons why it's worth a few moments of your time:
    1) Other members have taken time out of their day to assist you, so please take a moment to give them credit for the assistance they have provided.
    2) Your rating not only helps your peers earn points toward their status in Discussions, but validates the quality of the solution you've received.
    3) Other readers will be able determine which response(s) helped solve the original question, which will greatly enhance the knowledge and experience for all community members and visitors.

Maybe you are looking for