A simple slideshow

i'm looking for a simple way to create a no-frills flash
slideshow.
currently, i'll put my images on a layer and use frames to
expand the timeline so each frame is left on long enough for
viewing.
is there a simple way where i can just put 15 images on 15
frames and then use a simple piece of AS to make each frame freeze
for about 6 seconds before going to the next frame?
i also just need to make this loop - no advance or rewind
buttons. thanks.

The Slide Presentation (uses screens) is ideal for this. Just
start a new flash file and select Slide Presentations instead of
AS2.0 or AS3.0 (depending on your version). Unfortunately, it is
available only with Pro versions.
Once you're in, simply import each image to a different slide
and apply effects (timeline, transition, timing etc.) to the first
one and have the rest inherit from the first.
Good luck,
V

Similar Messages

  • A simple slideshow program for 68k OS7 Macs suggestions pls

    I'm looking for a simple slideshow program for my old 68k OS7 Macs. I just want to have some PICTs display on a set time period or key press. Nothing fancy.
    I can get Claris to this but wonder if HyperCard can. I'm no expert on HC but it seems to be designed for this exact job. Do I need to find a "stack" or some already made item to open in HC then attach my piks? Any suggestions?

    It would be possible to use HyperCard, although you may need to do a little programming if you go with it. If you use a blank HyperCard stack, you can assign one picture per card and link them. Clickable buttons would be the easiest way to do this. Which version of HyperCard are you using?
    An old version of PowerPoint would work fine too. Anything older than PowerPoint 98 runs on a 68K unless you are using a 68000 processor, in which case you'll need one of the pre-1994 versions.
    Believe it or not, Kid Pix is a possible answer to this as well. Any version from Kid Pix 2 onward (as well as the Kid Pix Companion addon for the original Broderbund version) contains an application called Slide Show, which is used with files in the PICT format. You can display an image for up to 30 seconds and add transitions between slides.

  • Can Touch be used to create a simple slideshow of images?

    Can Touch be used to create a simple slideshow of images?

    No, sorry, but you can, of course, produce a series of images for use in a slideshow.

  • Creating a Simple Slideshow w music as a movie for a web page.

    Hi all,
    I would like to create a simple slideshow with music saved as a mp4 movie for a web page. I'd like to use basic transitions like crossfades between the pictures and other fun stuff
    A few questions:
    1 - Would I be better of  creating this in iPhoto or iMovie or Keynote?
    2 - Any hints in getting started?
    note: I guess I'll post this on iPhoto area also...

    You are probably better off in iMovie. You will have a lot more control. With iPhoto, as far as I know, all slides would have to be the same length, and you would need to pick music from iPhoto. With iMovie, you can customize slide length, make them change on the beat, use your own music, etc.
    I would use Keynote only if you want to include text and bullets where the photo is only part of the slide.

  • Simple slideshow help

    Hi, I want to create a simple slideshow but my app fails with a NPE when it attempts to read in the first image.
    import javax.swing.JFrame;
    import javax.swing.JFileChooser;
    import java.io.*;
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    import java.awt.image.BufferedImage;
    import java.util.Vector;
    import java.awt.Graphics;
    public class Main extends JPanel implements Runnable
        private static Vector imagesArray;
        private static volatile Image currentImage;
        private static volatile boolean isInterrupted=false;
        private String strCurrentDir=System.getProperty("user.dir");
        //gets the current working directory
        private JFrame frame;
        private JPanel panel;
        public static void main(String[] args)
            new Main();
        public Main()
            frame = new JFrame();
            panel = new JPanel();
            frame.getContentPane().add(panel);
            getImages();    //prompt the user to select images
            Thread animationThread = new Thread(this);
            animationThread.start();
        public void getImages()
            String strTextFieldContents="";
            //open file chooser so the user can find the file
            JFileChooser fileChooser = new JFileChooser();
            fileChooser.setCurrentDirectory(new File(strCurrentDir));
            //sets file choose to use the current working directory
            fileChooser.addChoosableFileFilter((new ImagesFilter()));
            fileChooser.setDialogTitle("Please select image files");
            int returnVal = fileChooser.showOpenDialog(new JFrame());
            if (returnVal == JFileChooser.APPROVE_OPTION)
                    File temp=fileChooser.getSelectedFile();
                    strTextFieldContents=temp.getAbsolutePath();
                    imagesArray.add((String)strTextFieldContents);
            else{}
            imagesArray.trimToSize();
        public void run()
            while(isInterrupted==false)
                for(int i=0; i<imagesArray.size(); i++)
                    try
                        Thread.sleep(200);   //display the image for 200ms at a time
                    catch(InterruptedException e)
                        System.out.println("Interrupted");
                    // If the Toolkit cannot find the file or load the data it
                    // gives no warning. You must check on the loading status
                    // for yourself.
                    MediaTracker mt = new MediaTracker(this);
                    mt.addImage(currentImage, 0);
                    try
                        mt.waitForID(0);
                    catch(InterruptedException e)
                        System.out.println("media tracker interrupted");
                            int status = mt.statusAll(false);
                    if((status & MediaTracker.COMPLETE) != MediaTracker.COMPLETE)
                        System.out.println("status = " + status);
                    // getImage is asynchronous, ie, it doesn't wait for the
                    // image data to load. So you may need to stop to load it.
                    Toolkit toolkit = Toolkit.getDefaultToolkit();
                    String strImageLoc=(String)imagesArray.elementAt(i);
                    //currentImage = toolkit.getImage("Cuboid_Obstacle.jpg");
                    currentImage = toolkit.getImage(strImageLoc);
                    currentImage=(BufferedImage)imagesArray.elementAt(i);
                    panel.repaint();
        public void paintComponent(Graphics g)
            //super.paintComponent(g);
            Toolkit.getDefaultToolkit().sync();
            if (currentImage!=null)
                g.drawImage (currentImage, 0, 0, this);
    }

    The compiler tells you which line of your code generates the NullPointerException. Analyze that line to determine which of your references may be null.
    Hint: Declaring a variable reference does not initialize it!
    Then deal with the ClassCastException the same way.
    db

  • Simple Slideshow isn't working in IE 7 and 8

    I am using the simple slideshow widget for the first time. When I add the widget to Dreamweaver it seems to work fine. When I go to browser lab and review the results for Internet Explorer 7 and 8 all I see is the list view of the photos that I have included to the slideshow menu. Things seem to be fine for IE9, Chrome, Firefox and Opera. It seems as though IE isn't seeing the javascript. Does anyone have any ideas?
    thanks in advance.
    the sight is www.hairlinecreations.us

    thanks for responding.
    It turns out I had to place the 3 java calls for the spry navigation bar before the java calls for the slideshow. There must be something in conflict that interferes with the slideshow.
    thanks again
    idealneal

  • JQuery - Linking images in a simple slideshow

    Hey guys, I am working on creating a very simply image slider that links  to different pages of my site. It is all but complete! however, when I  wrap my image in "A Href" tags they screw up the transition (Or fade)  effect codded into my slideshow. Here is the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type"/>
    <title>Simple jQuery Slideshow from JonRaasch.com</title>
    <script type="text/javascript" src="jquery-1.2.6.min.js"></script>
    <script type="text/javascript">
        Simple jQuery Slideshow Script
        Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify
    function slideSwitch() {
        var $active = $('#slideshow IMG.active');
        if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
        // use this to pull the images in the order they appear in the markup
        var $next =  $active.next().length ? $active.next()
            : $('#slideshow IMG:first');
        // uncomment the 3 lines below to pull the images in random order
        // var $sibs  = $active.siblings();
        // var rndNum = Math.floor(Math.random() * $sibs.length );
        // var $next  = $( $sibs[ rndNum ] );
        $active.addClass('last-active');
        $next.css({opacity: 0.0})
            .addClass('active')
            .animate({opacity: 1.0}, 1000, function() {
                $active.removeClass('active last-active');
    $(function() {
        setInterval( "slideSwitch()", 5000 );
    </script>
    <style type="text/css">
    /*** set the width and height to match your images **/
    #slideshow {
        position:relative;
        height:350px;
        width : 610px;
    #slideshow IMG {
        position:absolute;
        top:0;
        left:0;
        z-index:8;
        // opacity:0.0;
    #slideshow IMG.active {
        z-index:10;
        opacity:1.0;
    #slideshow IMG.last-active {
        z-index:9;
    </style>
    </head>
    <!-- this will work with any number of images -->
    <!-- set the active class on whichever image you want to show up as the default
    (otherwise this will be the last image) -->
    <div id="slideshow">
        <img src="images\missions-slide.jpg" alt="Slideshow Image 1" />
        <img src="images\young-lions-slide.jpg" alt="Slideshow Image 2" />
        <img src="images\welcome-to-icc-slide.jpg" alt="Slideshow Image 3" />
    </div>
    </body>
    </html>
    The three images on the botem are to be linked to different pages, and I  read on the developers forum (The developer of this code that is) that I  need to reference the images as Div's. I just don't know how. Also, I am using DWCS5.
    I am fluent in C++, java, C# and old school html, so I understand some  of this code, but i don't know the basics enough to be able to know what  to do here. Please help! Thanks!

    You can look at the javax.swing.ImageIcon class and add that to your JOptionPane...
    - MaxxDmg...
    - ' How should I know, I just wrote the thing... '

  • Start a simple slideshow with a button

    Hi together,
    I work with CS6 and create a slideshow with 8 pictures. Above a button, now I will touch the button to start the slideshow. Now it doesn`t function. I see only one slide to the next slide by touch the button. By taking the automatically version, the slideshow starts everytime by opening the document. I don`t understand. It is so simple, and I see not my mistake.
    Best Regards
    Boris

    A button can go to a specific state or to the next or previous state, but it cannot play the slideshow. One workaround is to set the slideshow to Tap to Play/Pause and add a dummy button image in the first state. Tapping the button is really just tapping the slideshow.

  • Just a simple slideshow

    www.melinanicolaide.com
    this is a website i'm redoing
    need to do the same,
    but only a bit refined on the edges.
    The menu stays almost the same
    and we want to slideshow as simple as that.
    I know it's a simple task
    but my knowledge is rusty
    any sites to help me out?
    thanks/

    >> any sites to help me out?
    Google
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Simple slideshow transfer from Iphoto losing aspect ratio

    I have seen other posts on similar subjects, but covering importing and what appear to be more complex uses of the mac suite.
    I am a novice and so have used the software in the 'out of the box' settings. I have created a slideshow and when I export it to iMovie they always end up thinner.
    I have tried changing the iMove preference to turn off automatic CV pillarboxing and Letterboxing as one of the chains suggests but makes no difference.
    Any simple answers or do I need to start again and build the slideshow from scratch in iMovie
    Thanks in advance

    Sam, you're saying that your iPhoto-exported movie arrives in iMovie with black bars along its left and right sides, right?
    The problem, I suspect, is not with iMovie but with the settings for the slideshow in iPhoto. Go back to the slideshow in iPhoto, click on the Settings icon at the bottom of the Slideshow window, then turn ON the checkbox "Scale photos to fill screen".
    Now export it again. This movie should import better to iMovie.
    If I've not understood the problem, please say again.
    I am a novice and so have used the software in the 'out of the box' settings.
    You are not alone. You're banging your head against a wall that bloodied my forehead for two days a year ago. It's not because you're a novice; I've spent years with this stuff.
    Sometimes Apple's "simple" user interface isn't as intuitive as it claims to be, and this is one of those times. The QuickTime environment -- the software behind all the iApps -- is arguably the richest, most complex environment on the Mac, offering tons of possibilities. Over-simplification of QT functions in apps like iPhoto and iMovie sometimes makes it hard to get things done the way you want. You often have to rely on experimentation to figure out how Apple has implemented QT in this particular situation. And occasionally, it's crucial to borrow the sharp machete of a good book author to cut through the thickest brambles.
    Karl

  • How can I make a simple slideshow on iDVD?

    As opposed to the majority of Apple apps that are "user-friendly" I find using iDVD a very awkward, un-friendly application. It offers "drop zones" without me understanding what I should "drop" into them.
    I just want to make a simple DVD of a slideshow with some background music ... nothing fancy. I don't need any theme and I don't need to add any movies.

    To simply create a slide show in iDVD 7 onwards from images in iPhoto or stored in other places on your hard disk or a connected server, look here:
    http://support.apple.com/kb/HT1089
    If you want something a bit more sophisticated:
    There are many ways to produce slide shows using iPhoto, iMovie or iDVD and some limit the number of photos you can use (iDVD has a 99 chapter (slide) limitation).
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, place text exactly where you want it, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico:  http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie  as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, including adding other video clips, then send it to iDVD 7, or Toast,  for burning.
    You will be pleasantly surprised at how professional the results can be!

  • Creating simple slideshows - is Catalyst the right tool?

    I am a photographer and I want to create a slideshow of 100 images or so to promote my business. I was doing this with iDVD and it's simple - but doesn't support HD and has no provisions for a "Ken Burns Effect". I've used iPhoto and it does everything I need, but can't really burn a disk of the slideshow that works on PCs or Macs (that I know of). I am fairly proficient in Photoshop.
    Here's my needs:
    - drop in a series of photos
    - create an order of the slides
    - a simple transition between slides (could be just a fade)
    - be able to do a manual Ken Burns on each slide (define start position and zoom / end position and zoom). So as that image is displayed it is moving somehow.
    - automatically fit the slide duration to a mix of music
    - burn a disk of that slideshow in HD (1080p or 720) give it to potential clients - they should be able to pop it into their Mac or PC and be able to play the slideshow just as I created it.
    So is this something I can do easily with Catalyst? Is there a tutorial specific for this kind of need? Is there a better app for this kind of thing?

    Robert-
    If you are looking to create DVD that is viewable on a TV or something that is viewable on a computer? Either way, Flash Catalyst is not the right tool. It might be part of an overall solution, but it might get very messy to develop. I would take a look at what Lightroom might offer, or try asking in a photography forum. They might know a tool that might fit your needs.
    Chris

  • I have put quit a few pictures in an "album" and want to do a simple slideshow but go from picture to picture manually and not use background music or fading etc.. the duration of each picture showing to be controlled manually.. thanks .. SWK in Va

    I am preparing a slide show for a group and have put  many the photos in an iphoto album "but" want to show the pictures " manually"  during the slideshow.. However when I start the show all pictures have a time setting... Can I do it manually?  the show will be projected on a much larger flat screen tv..  Thanks..  swkinva.

    You don't want a slideshow then, you just want to display the photos.
    So:
    Put them in the album. Select the first one. Tap the space bar to enlarge it. Then the right arrow key to move to the next one and so on.

  • Simple slideshow, will not work in as 3.0

    L.S. I have this little slideshow, it is for practise for my students. It always worked well in as 2.0,
    5 slides, and two buttons: back and next.
    The script in2.0 has: prevFrame and nextFrame in the code
    and for the exceptions in frame 1, and frame 5 we made a new frame 1 in the actions layer, and coded the back button, gotoAndStop(5); and a new frame 5, and coded the next button: gotoAndStop(1);
    Works.
    Now I put the thing over tot as 3.0: And I can not get it to work properly....the buttons work, but when I am on frame 5, and go back to 4, it will go no further than 4, evenso when I go back to frame 1 from 5, I can not go further up than frame 1.
    What do I do wrong??
    attached is the fla in cs5.
    Thanks,
    Anne Vossen
    Message was edited by: Vossen I am sorry but I can not find the button to load up my files...so here is the script:
    as frame 1:
    import flash.events.MouseEvent;
    stop();
    next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    //next_btn.addEventListener(MouseEvent.CLICK, eersteFrame);
    //back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    back_btn.addEventListener(MouseEvent.CLICK, laatsteFrame);
    function volgendFrame(evt:MouseEvent):void{
    nextFrame();
    function eersteFrame(evt:MouseEvent):void{
    gotoAndStop(1);
    function vorigFrame(event:MouseEvent):void{
    prevFrame();
    function laatsteFrame(event:MouseEvent):void{
    gotoAndStop(5);
    frame 2:
    next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    //next_btn.addEventListener(MouseEvent.CLICK, eersteFrame);
    back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    //back_btn.addEventListener(MouseEvent.CLICK, laatsteFrame);
    frame 5:
    stop();
    //next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    next_btn.addEventListener(MouseEvent.CLICK, eersteFrame);
    back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    //back_btn.addEventListener(MouseEvent.CLICK, laatsteFrame);

    It will be easiest to manage if you just have the buttons coded once for the entire timeline with the special conditions written into the functions instead of switching listeners.  And if you use totalFrames instead of the actual number (5), you can add frames in the future without having to change the code...  Frame 1...
    stop();
    next_btn.addEventListener(MouseEvent.CLICK, volgendFrame);
    back_btn.addEventListener(MouseEvent.CLICK, vorigFrame);
    function volgendFrame(evt:MouseEvent):void{
        if(currentFrame < totalFrames){
             nextFrame();
        } else {
             gotoAndStop(1);
    function vorigFrame(event:MouseEvent):void{
        if(currentFrame > 1){
             prevFrame();
        } else {
             gotoAndStop(totalFrames);

  • How to make a simple slideshow?

    What's the best way to make a dvd with 400 plus photos.
    All I want should be simple. Photos dissolving with music.
    No special theme.
    I've already put the photos together and added music only to find out idvd will only allow 99 photos.
    I have a Mac Pro Book OSx Lion 10.7.5
    Any help would be great.

    There are many ways to produce slide shows using iPhoto, iMovie or iDVD and some limit the number of photos you can use (iDVD has a 99 chapter (slide) limitation).
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, place text exactly where you want it, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico:  http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie  as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, including adding other video clips, then send it to iDVD 7, or Toast,  for burning.
    You will be pleasantly surprised at how professional the results can be!
    To simply create a slide show in iDVD 7 onwards from images in iPhoto or stored in other places on your hard disk or a connected server, look here:
    http://support.apple.com/kb/HT1089

Maybe you are looking for

  • Flash player not loading videos after firefox update to 32.0.1

    Hi, I use Firefox portable and use it for work. I do moderation of videos. I open a page with 5-20 videos that load with Flash Player and view them. Today there was a Firefox update to 32.0.1 version. After update when I open a page I only get 1 vide

  • Hi sap master plz solve my requirement

    hi masters my client watns a requirement in g/l line item display(fbl3n) he wants the offsetting account no or long text plz give me the answer thank you

  • IBook Author - Categories

    I've created an iBook with iBook Author, downloaded it onto my iPad. When looking at my iBooks in list view the title and author are shown but there is no category and I can't figure out from any documentation where you can define the category for th

  • System usage per user

    Hi Security Experts, Our company have a SAP system version ECC 5.0 and right now we are making an analysis related to the quantity of users and the quality of the system usage per user, so the question here is if there's a way to know how much resour

  • Bad order of a columnin a grid

    Hi, I've a Grid that I populate with a user query, using ExecuteQuery method form.DataSources.DataTables.Item(idTabella).ExecuteQuery(query) All is ok, but the order of the column is not correct. For example, if my query is 'Selecr A,B,C from mytable