How to play images in name order

I have a folder in i-Photo with approx 400 image all named in sequence 000, 001, 002 etc
Drop this folder in iDvd in to slide show and they apear to be in total random order
I can sort them by hand but is there a way to get them to list and play in the correct order?

To late to edit the above post so i'll simply add this info here. It's directly from the Getting Started in iDvd'08 pdf. Let me know if these 2 pages help (starting w/ pg #14)
Step 5: Add a Slideshow
Adding a slideshow to your iDVD project is a great way to enhance your DVD and show
your photographs. You can use a slideshow already created in iPhoto, or you can use
iDVD to create a slideshow from a group of pictures.
You can even create a DVD that has no movies at all but rather showcases your photos
in one or more slideshows. Depending on the amount of other content included and
the size of your photos, your DVD can hold up to 9801 images.
In this step, you’ll create a slideshow of photographs and movies in iDVD and add a
soundtrack.
To create a slideshow in iDVD:
1 If the main menu is not showing, click the Back button on the scene selection menu to
return to the main menu.
2 Click the Add button at the bottom of the iDVD window and choose Add Slideshow
from the pop-up menu.
A button labeled “My Slideshow” appears on the menu. This button may appear too far
from the movie button. Leave it as it is for now. You’ll learn how to reposition buttons
in “Changing Button Shapes” on page 23.
Click My Slideshow to select the text, and then type My Photos.
If you want to modify the text, use the controls in the in-place editor to do so.
3 Click outside the text area to deselect the text, and then double-click the My Photos
button to open the slideshow editor.
The iDVD window changes automatically to show the Photos pane.
P. 15
The slideshow editor, shown below, is a blank screen with the words “Drag images
here.”
4 Drag photos one at a time or in groups from the Photos pane to the slideshow editor.
You can even drag a whole album to the slideshow editor.
If you haven’t imported photos into iPhoto, you won’t see photos in this list. You can
open iPhoto anytime and import some photos, or you can drag photos from other
locations on your hard disk directly to the slideshow editor.
5 Arrange the images in the order in which you want them to appear.
Drag the images in the slideshow editor to rearrange them. To delete images, select the
ones you want to remove, and then press the Delete key on your keyboard.
Access the Photos
pane to add photos
to your slideshow.

Similar Messages

  • How to import images in alphabetical order???

    How may I import images in alphabetical order? I have a stack of images that I have renamed so that they are in alphabetical order. However, when I import these ~100 images into iPhoto, it sorts them in some other order (perhaps, although I am not sure, by time taken). If iPhoto does not allow one to import alphabetically (although I sure hope it does, since this would be very convenient), any ideas how I may modify the image taken time so that I can get this set imported in the order that I need?
    Thank you very much!
    iPhoto 5.04
    OS 10.4.10

    What print service are you using? Is it an online print service? Or an iPhoto plug-in? To upload to a website you should export the photos (a Desktop folder is convenient) and choose the exports for the upload.
    If you are using the Finder to see a list of files, the Finder always lists them in alpha-numeric order. To get a list of photos to export to your Desktop (for uploading) and preserve your order, try this: create an Album, sort them the way you want, then Export to a Desktop folder. In the Export dialog, choose "use Album name" as the filename option. This will preserve your order upon export and name the files "Album name - 01.jpg, Album name - 02.jpg, ..., Album name - 99.jpg." It only works with 99 or fewer photos in the album, so for more photos create another album.

  • How to play songs in sequential order on iPod touch 4th Gen. ?

    How do I play songs in sequential order on a specific album? Some albums should be listened to that way, for example LIVE CONCERTS or concept albums.  I have an Ipod Touch 4th Generation.  I have turned OFF shuffle play, but that did not help.

    Arrange them in a Playlist in the proper order and then just play that playlist.
    manuals.info.appleipod_touch-6.1-_user_guide.pdf

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • How to copy images from another MC in reversed order??

    Hi everyone,
    I'm new to AS3 and have been fighting and searching for a solution to this problem for a week now, and I'm VERY close!
    I crated a MC holding of a series of images (about 50) and I jump around in it using plenty AS3 scripts (most of which I don't fully understand yet, but I'm working on that to! )
    I had to find a way to "rewind" (= play backwards) the MC. Since there is a stop(); command in almost every frame, prevFrame does not work and if I put that in a loop, it goes WAY to fast (but worked).. So I could think of only one way...
    Create a new (reverserd) MC with the same image sequence ald reverse it manually and play that one.
    This all works fine (very proud of it ).
    Now my question:
    To get this to work for multiple image sequences, I have to load all images twice (once in MC_1 and again in MC_2 and select them and reverse them).
    Not a big one, unless you want to create MANY of those SWF's...
    Is it possible to load the 50 images of the first MC in reverse into the second MC dynamically? JUST the images, noting else.
    extra info: the MC_2 is already in the lib(empty) and placed on the stage.
    something like:
    var pointer:Number=1;
    for (var:i:Number=50;i>=0;i--) {
    get MC_1.picure(var);
    put it in MC_2.frame(pointer);
    pointer = pointer + 1;
    All help is welcome and please take into account that I have little experience and copy most of my scripting from people like you
    T.I.A.
    Melluw

    I tried your advice (thanks for that)
    The event I already have is the mouse leave
    I //-d out the part I removed (what did work)
    The code I ended up with is:
    function Start() {
    stage.addEventListener(Event.MOUSE_LEAVE, cursorHide);
    function cursorHide(evt:Event):void {
    var currFrame = MC_1.currentFrame;
    if (CCW == true) {  //it is true in this case
      movStart = (50 - currFrame);
    else {
      movStart = currFrame;
    if (movStart>25) {
      MC_1.prevFrame();
    // removed swapChildren(MC_1, MC_2); // This is the part I removed
    // removed MC_2.gotoAndPlay(movStart);
    else {
      MC_1.gotoAndPlay (movStart);
    And if I leave the stage on the part where movStart is indeed >25
    Nothing happens,
    So I guess this is not what you meant
    Subject: Action Script 3 how to copy images from another MC in reversed order??
    I cannot direct you in the loading of the images approach, it will be too complicated, and will probably not work anyways... when you move away from a frame that has dynamic content, you lose the content.  So basically, there is nothing practical in taking that approach.
    I do niot understand what the problem will be with the enterFrame/prevFrame approach. If everything you can do with the mouse is already used (which I doubt) by the first mc, then there is nothing else you can do with this file.  You probably just need to rethink your control scheme.  You should search Google for "AS3 slideshow tutorial", and to lighten up your design, add "XML" in that search.
    >

  • HT1399 how can my song tracks be played  in the orginal order of when i purchased the album

    i bought a music album and it isn't playing the song in the order the songs are listed?

    Hi Kenny813,
    Welcome to the Support Communities!
    The article below will show you how to access the information about the album to edit or correct it if the songs are not playing in the correct order.
    Fixing Incorrect Song or Album Listings in iTunes
    http://support.apple.com/kb/TA24677?viewlocale=en_US
    Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/ts1468
    Albums in which all songs don't have the same Album Artist information
    iTunes 7 and later includes a new attribute for song files called Album Artist This allows you to assign a primary artist name for an album that many includes songs by several artists. It is important that all songs in the album have the same Album Artist name. To assign an Album Artist, select all the songs in the album and choose Get Info from the File menu. Next, type a name in the Album Artist field name such that it will apply to all the selected songs.
    Cheers,
    - Judy

  • I have pictures in a folder, how can I display them in name order?

    I have pictures in a folder, how can I display them in name order?

    Welcome to the Apple Community.
    I don't think you can. You might ensure that their creation dates are in order, but I'm not so such that will help. Ordering seems to be a feature limited to use with iPhoto/Aperture.

  • How can I sync my ipod shuffle so that it plays in the same order as my playlist?

    How can I sync my ipod shuffle (4th generation) so that it plays in the same order as my playlist?

    Is the playlist in your iTunes library, or is it already on the shuffle (as a playlist)?
    If you created one or more playlists for your shuffle in your iTunes library (with the songs in the desired playlist order), you should set up automatic syncing.  Here's how to do that, if you have not already...
    NOTE:  If the iTunes sidebar (along left side of window) is not visible, from the menu bar, under View, select Show Sidebar.
    Select the shuffle in the sidebar, under DEVICES.  Near the top of the window, there is a bar of buttons, starting with Summary.  Click Music next to Summary.  This is the shuffle's Music screen, where you tell iTunes how to sync songs. (Sorry if you know this already...)
    Check the box for Sync Music.  Below that, choose the option to sync Selected playlists, artists, albums, and genres.  In your case, find and checkmark those playlists you want under Playlists.  When you click Apply, the songs on those playlists and the playlists sync to the shuffle. 
    When using your shuffle, the default playlist that you are using is the All Songs list.  To play songs in order, the shuffle's power switch needs to be set to the play-in-order (middle) position.  However, if you are playing from the All Songs list, the songs play in alphabetical order.
    To play from a particular playlist that is on the shuffle, you need to use VoiceOver to switch to that playlist.  This document explains how to set up and use VoiceOver on a shuffle
    http://support.apple.com/kb/HT4322
    When playing from a particular playlist, with the power switch set to play-in-order, the songs play in playlist order.

  • Ok here goes.  I have so much music I don't want to store it all on my computer and would like to store on an external hard drive.  So if all my music is on the external hard drive, how will iTunes see it in order to play the music.  Thanks

    ok here goes.  I have so much music I don't want to store it all on my computer and would like to store on an external hard drive.  So if all my music is on the external hard drive, how will iTunes see it in order to play the music.  Thanks

    This article might help you moving/relocating your library :
    http://support.apple.com/kb/ht1449
    Cheers AF

  • How do I get Itunes to play an album in order if some of the songs are duets? For example, if I'm playing an album by "John Doe" and track

    How do I get stupid Itunes to play an album in order if some of the songs are duets? For example, if I'm playing an album by "John Doe" and track #3 is a duet w/ "Jane Doe", it treats it as a separate album! What can I do

    Hi
    All my tracks are MP3.
    In List View, I do not have an Album column I have an Album by Artist column.  If I click on this column the albums look right in the playlist on the screen but when I burn to the CD the tracks are not in one folder per album instead they seem to be in folders per Artist then Album, which as one of the albums is a compilation has created about 30 folders.
    If I switch on the 'Sort by Album' column it burns the disc as I expected.

  • Elements 8 - How to view images by scrolling thru folder of file names?

    After taking a large batch of pictures, I want to place them in a folder and rapidly view the full images one at a time to select which to keep and which to discard.  IN PE-8 how can I display two panes - one pane containing the image file names contained in a folder and the other pane which displays the image of the file name selected?  Using the arrow keys, I want to move through image file names one at a time while displaying the image associated with the file name in the other pane.

      One method of accepting or rejecting is to use star ratings.
    Select the first image and press F12 to view full screen. Press the 5 key to add five stars.
    Press the right keyboard arrow to move to the next image and star or move on.
    When you have finished the batch you can filter by the star rating.

  • How to embed images in long text of PM Notifications/Orders

    Dear Sir,
    How to embed images in long text of PM Notifications/Orders? Kindly help.
    Thanks & Regards
    PM Team.

    Hi,
      Unfortunately, You will not be able to view the graphics within the Long text editor screen.Only Limited word functionality is available on these editors.
      You will have to store these pictures separately as an attachment, through generic object services and then view them through that.
    Regards
    Narasimhan

  • How to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    how to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    Within Aperture you have Images, which are constructed on-the-fly from two files (the Master and the Version).  You get an image-format file _only_ when you export an Image.  You select the file name (usually a scheme) when you create an image-format file (that is, when you export).  Look under "Aperture→Presets→File Naming" for built-in Presets.  You can, of course, create your own or customize any provided.
    The Preset is applied to only the file newly created by your "export" command.  It is not applied to the Image in Aperture (unless you rename your Versions or your Masters).

  • How do I call image file names from MySQL & display the image?

    Hello everyone,
    I have image file names (not the full URL) stored in a MySQL database. The MySQL database is part of MAMP 1.7 and I am using Dreamweaver CS3 on a Mac Book Pro.
    I would like to create a catalog page using thumbnails, and PayPal buttons displayed within a table, in rows. With the image centered and the PayPal button directly underneath the image.
    How do I use PHP to call the thumbnail images as an image not the file name, to be displayed in the table?
    Thanks in advance.

    slam38 wrote:
    How do I use PHP to call the thumbnail images as an image not the file name, to be displayed in the table?
    Open the Insert Image dialog box in the normal way, and navigate to the folder that contains the images. Then copy to your clipboard the value in the URL field, and click the Data Sources button. The following screenshot was taken in the Windows version, but the only difference is that Data Sources is a radio button at the top of the dialog box in Windows. It's a button at the bottom in the Mac:
    After selecting Data Sources, select the image field from the approriate recordset. Then put your cursor in the URL field and paste in the path that you copied to your clipboard earlier.

  • Does anyone know how to authroize my computer in order to play my songs??

    Does anyone know how to authorize my computer in order to play my songs??

    For songs, this should only happen to songs purchased from the iTunes Store that were purchase more than a few years ago, when the songs had DRM (copy protection).  More recent song purchases from the iTunes Store do not have DRM.
    To authorize your computer, from the iTunes menu bar, under Store, select Authorize This Computer.  When prompted, enter the Apple ID (with password) used to purchase the songs.  If your currently used Apple ID is different, one computer can be authorized for more than one Apple ID, so that is not a problem.
    Each Apple ID can be authorized with up to five computers (including computers you no longer have but did not deauthorize).  If you have reached that limit, please post back.

Maybe you are looking for

  • How to change crystal report data field at runtime ?

    Hello everyone, I have a Crystal Report file ,which i am using to generate report for my windows form project . In that report i have a filed called as Quantity which data type is set as decimal, the requirement is like that the number of value those

  • Creation of Table Maintainence Generator for Standard table

    Hi, I need to create a table maintainence generator for  a standard SAP table. The end user need  have to delete certain entries from the table. Is it viable to go for a table maintaninence  generator or go for program which will delete the entry fro

  • Disntinguish between functional area and cost center

    Hello,      what's the real pupose of defining func. areas and assigning to cost centers. ok, we can capture all the costs of all cost centers , fine, but even the cost center will do that and we can report at cost center grp level or at any grp leve

  • Behaviors are outdated. Fix them

    Open up a new HTML strict document. Try attaching a behavior on body tag Dreamweaver will write out code like so <body onLoad="MM_StupidBehavior();"> Hello! Isn't the doctype strict? Whats onLoad doing there? Now validate this flawed implementation i

  • Process chain: how to automatically remove from schedule?

    Hi All, Is there a way to automatically remove a process chain from schedule when it has failed? Thanks, Natalie