How to create a 10 song playlist in Idvd as a separate button

I am creating a dvd and I would like to have a separate button on the main page in Idvd that will take the viewer to a separate menu where I can list all 10 songs where they can play just the songs.  I have created the playlist in Itunes so that is ready.  How can I get this accomplished?  I would like to have a play list where if they want to listen to song#3 they can just click on it to listen or they can play all 10 songs one after another.

You will need to create a slide show for each of those 10 songs with a minimum of 1 photo per slideshow and add the song to the slideshow audio bin. Set the audio to Fit to Music.
In your top/main menu create each sldishow with the "+" button at the bottom:
Select the link in the menu and rename it for the song used in the slideshow.  You can create a slide image for each song with the song name, composer, singer, etc. on the image to be used for the slideshow  An image editor or Pages can be used for that and then convert to a jpeg file for use in iDVD.
The main menu could look like this depending on the theme you choose:
OT

Similar Messages

  • How to creates a "fixed" random playlist?

    I want to create playlists with songs in a random order. I want to listen to all the songs in that  order before listening them again.
    If I use the "Randomize" feature, the list will always reset and start anew in a new order when I listen to something else and get back to the playlist. I dont want to re-listen the same songs, I want to continue where I left.
    If I use the "Randomize" feature,  when I switch from my iPhone to my work's computer, from my work's computer to my home computer, and back to my iPhone, it will always reset the list and start anew. I dont want to re-listen the same songs, I want to continue where I left.
    It was so easy to do before iTunes 11, but now that the songs remains in their initial order in the list when using "Random", im at a lost. How can I do that?

    right click the playlist and select burn to disc from the drop box.  it then will give you burning options:  cd, mp3, etc.
    This is much faster and easier than going through the menu options.  I don't know when they added this, but it's a welcomed change.

  • How to create/org a Video Playlist?

    Hello everyone, I must say I really really like my new (video) iPod 60!! I have "rip" 3 videos into it so far, a recorded off-TV MTV of Madonna's "Hung Up", a recorded "Lost" episode and a DVD of Star Trek Enterprise, they all look good and sounds good on the iPod!!
    On the Main Menu > Video > Video Playlist, Movies, Music Videos, Video Podcast & Video Settings; How do you create new Video Playlist? I noticed all my "rip" video are inside the 'Movies' category... I guess only videos like music videos bought from the iTMS would go into the 'Music Video'??
    Thanks all and cheers!!

    this is the code snippet that would answer u r question
    import org.apache.xml.serialize.XMLSerializer;
    import org.w3c.dom.Attr;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.w3c.dom.Text;
    import org.w3c.dom.ProcessingInstruction;
    import org.xml.sax.InputSource;
    import com.exel.businessobjects.*;
    StringReader srxml = new StringReader(xmlcontent);
    Reader rxml     = (Reader)srxml;
    InputSource isxml = new InputSource(rxml);
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse(isxml);

  • Can't find how to create on-the-fly playlists using search

    I used to make ad-hock playlists on the fly using the quick search in iTunes 10:I would display a list of songs (the full library or from a play list), type somethings in the quicksearch box, and the list would narrow down to the search results, where then I could simply hit "play" and use these results as a temporary ad-hoc playlist.
    That features seems to be gone- even after getting iTunes 11 to LOOK like iTunes 10, typing any search term will show (partial) results in a drop down menu, not narrowing the display, and no option in a single click to simply play the results.
    Am I missing something? Did Apple really remove that functionality?

    Settings>cellular>cellular data

  • How to Create a 2nd Page to an IDVD Project

    In past, I was able to create a project that had content on 2 'pages'.  Now, I can't find a way to put content on a 2nd 'page'.

    Go up to the iDVD menu, click on Project and then click on Add Submenu. 
    Or, if you have inserted chapter markers into your iMovie project, and want scene selection on a submenu, then Share from iMovie to iDVD and it will create them. 
    In iDVD Preferences/Movies you can set your preferences to create chapters in imported movies.

  • How to create a video playlist in Nokia E6?

    I have a music videos in my phone that i want to play continously but the media player only allows song playlist. i also want to separate and organize my personal videos to my movie and tv series videos. It's a hassle when you have to choose and play the next video after the current video has ended.Is there a way to upgrade the media player or download an app that can create palylist for videos?
    My Nokia Phones
    5110> 3210> 3650> 6270> 5500 Sport> 5000> E6

    Hello,
    You can try the following work around with composition:-
    1) Add a you tube video to the page.
    2) Drag the video to the target of composition widget.
    3) Resize the video to have the size of the target.
    The triggers can have the images related to the videos so as to act as thumbnails for videos.
    Regards,
    Neha

  • How to create and save playlist using JMF?

    Hello i m new to JMF. Can anyone tell me how to create and save a playlist of media files using JMF.
    also how can i play .DAT files using JMF?
    Does JMF supports AVI,Asf files?

    Hello i m new to JMF. Can anyone tell me how to create and save a playlist of media files using JMF.
    also how can i play .DAT files using JMF?
    Does JMF supports AVI,Asf files?

  • How to create a modeless dialog using commandlink

    i want to create a modelessdialog using commandlink. and my code is
    <%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <f:view>
    <script language="Javascript1.2">
    function modelesswin(){
    window.showModelessDialog();
    </script>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    <h:form>
    <h:commandLink onclick="javascript:modelesswin('popup.html', 300, 300)" value="click"></h:commandLink>
    </h:form>
    </body>
    </f:view>
    </html>
    when i click the buttonlink the dialog box is not in a stable state that is its will appear and within a second it will disappear .. can any one of them can suggest me how to create a modeless dialoge using commandlink or by jsf option button
    regards
    subramanian

    If I had to guess (and I do :), the onclick is firing, bring up the dialog, but the commandLink causes a form submit, so the page is submitted. There is no action on the commandLink, so it's navigating back to the same page, causing it to refresh and your dialog to disappear. It would appear to me that you need a h:outputLink or simply <a href="# onclick="..." /"></a>

  • How to create table with existing table structure

    How to do if i need a table with exactl similar structure of table mara?How to create it?

    Hi,
    In SE11 there will be a button Copy Table.
    Regards,
    Satish

  • How do you add captions to photos in iDVD slideshows?

    Is there a way to add captions to photos once you've put them into slideshows on iDVD? Or, if not, is there another way to add captions to them, though another apple application such as iPhoto? I haven't been able to figure out how to make captions for photos in iPhoto slideshows either. Please help!

    Welcome to the Apple Discussions. if you're creating the slideshow from stills in iDVD use the Settings button at the bottom to bright up the pane where you can add titles and comments. The downside of that is every photo will automatically have it's file name or title entered. If you don't want that then while you're in iPhoto use the Photos->Batch Change->Title->None option before you import into iDVD. Then none of them will have the titles entered and you can add them to just those that you want. Or you can add them while in iPhoto before importing.
    OT

  • I created a playlist with 100 songs.  I want those 100 songs played using the shuffle option.  This no longer works in iTunes version 11.1.5.5  How can I get an entire  playlist to paly one song after another by using the switch option?

    I created a playlist with 100 songs.  I want those 100 songs played using the shuffle option.  This no longer works in iTunes version 11.1.5.5  How can I get an entire  playlist to paly one song after another by using the switch option?

    You're welcome.
    Going back to your original post:
    5) Tried running Itunes in 'safe mode', running itunes as an administrator..nothing.
    Was that iTunes' safe mode as opposed to Windows' safe mode? iTunes safe mode is invoked by holding down CTRL+SHIFT immediately after clicking the icon to launch iTunes and continuing to hold until this message pops up:
    Click continue, then close iTunes and reopen. With luck iTunes now opens normally every time.
    tt2

  • How do I randomize songs in a playlist created usint the New Playlist From Selection

    How do I randomize songs in a playlist created usint the New Playlist From Selection?

    I noticed this was missing too- I use some apps on my iPhone for running and when synced over bluetooth in my car, where the new "random button" and "up next" isn't a viable solution. I have to save a randomized playlist ahead of time since those uses don't support randomization through iTunes- they can only play in the playlist order.
    I like to have 5 copies of the same playlist each randomized weekly ahead of time and synced so that each time I go running, it's not the exact same order. Can't find how to do this in iTunes 11.

  • How do I add certain songs and playlists to my iPhone but not others?

    Hi all,
    I recently installed iTunes 11.0 onto my MacBook Pro, and I yearn for the days of far simpler content management.  All I want to do is add certain songs and playlists from my computer onto my iPhone without re-syncing the entire thing (every time I do, sound files that I created for work find their way onto my phone, and I have to re-delete them every time).  But I can't figure out how to simply add ONE song or ONE playlist to what is already there.  In the previous version, it was so simple--just point, click, and drag.  Now I can't figure it out and I feel like an idiot.  Can anyone show me how to do such an absurdly simple thing?
    Thanks,
    Neil

    When you sync your phone with your laptop (or other device that has the songs you want), go into your music preferences and choose "Selected playlists, artists, albums and genres." This should allow you to select the three songs you want from your library. Make sure to click or tap on "apply" or else the changes will not be saved. Let the phone completely sync and those three songs should be in your phone's music library.
    Hope this helps!

  • How to create a playlist on iPod nano gen6?

    in all manuals it says and shows go to playlist icon, but I don't have such icon. and in iTunes it only offers me genius mixes, can't find any way to create my own playlist. tried google etc, but no results

    Hi kawarik,
    I found some information on how to create playlists on iPod nano (6th generation) here:
    iPod nano User Guide
    http://manuals.info.apple.com/en_US/iPod_nano_6thgen_User_Guide.pdf
    The information starts on page 25:
    Creating and editing playlists
    Create a playlist:
    1 On the Home screen, tap Music, and then tap Playlists.
    2 Flick down, and then tap Add.
    3 Tap a category (Songs, Albums, Podcasts, and so on), and then tap the items you want to add.
    Don’t tap Done until you’ve added everything you want to include in the playlist.
    4 Swipe left to continue adding content.
    You can add content from any category. For example, you can mix podcasts with songs in a
    single playlist.
    5 When you finish, tap Done.
    The new playlist is named New Playlist 1 (or New Playlist 2, and so on). The next time you sync, you can change the title in iTunes. When you sync again, the playlist title on iPod nano is updated.
    Since I am quoting this article out of context, I also located the section on multitouch gestures (page 11) to help with step 2 above:
    Flick
    Flick your finger quickly up or down to scroll rapidly. You can wait for scrolling to stop,
    or touch anywhere on the screen to stop it immediately. Touching the screen won’t choose
    or activate anything.
    In some lists, such as Playlists, you can flick down to show editing controls at the top.
    Cheers!
    - Ari

  • How do I designate a song from my playlist as my new ringtone?

    How do I designate
    a song from my playlist as my new ringtone?

    you will need to convert the song into a ringtone first.  either using iTunes http://www.ehow.com/how_2160460_custom-iphone-ringtones-free.html  or download the ringtone app, then create the ringtone and then sync with itunes.

Maybe you are looking for

  • Bad performance after analyze index

    Hi, I have a range partitioned table which recently I had to added new partitions to. After adding new partitions a particular query I had running on it started doing full table scans instead of using the index. I read somewhere that you have to disa

  • Splitting a PRI t1

    I have a PRI T1 coming to my AS5400. The controller T1 1/0 has the normal setup "pri-group timeslots 1-24" That creates a Voice port 1/0:0. What I need are the commands to split those 23 channels in two to be able to have two Voice ports defined. Any

  • Error while using idoc adaptor

    Hi, Can anyone explain me what does this error mean.Im doing a file to IDOC scenario <SAP:Stack>Error: MSGGUID 2B8185203F5911DCBF410002556AD065: Tag found instead of tag IDOC BEGIN=</SAP:Stack> Thanks in advance, Bhargav

  • Clearing old data from CO1P

    Historically this has not been checked in all our locations and as such over the years quite a few entries have appeared here and never been processed (some back to 2006) and as they are previous periods / financial years, cannot be processed now. Is

  • How to open pages documents with windows vista

    Does anyone know how to open pages document with windows vista? i saved it onto a usb stick but when i tried to open it on the computers in my university which support windows vista, it didnt reconise the file and opened with a page of question marks