How Can I Make A "Main Chapter" Selection?

Hi!
I created my first movie project in iMovie and, with some help in these discussion boards, was able to produce a pretty good result. I created 16 chapter markers in iMovie which caused iDVD to create 3 submenus. That works fine but what concerns me is navigation of the final DVD. I can’t seem to find a way to have one Main Chapter Menu that would allow someone to navigate directly to any of the 3 submenus. Currently you have to go back to the Main Menu and the choose “Scene Selection” and then choose the forward button to step through each of the submenus. For instance, if you want to get to a button on the last submenu you would have to select the forward button of 2 submenus just to get there. Is there anyway to create one Main Chapter Menu that would allow direct access to any of the 3 submenus?
By the way, on a related note, I could not find a way to export the submenu titles so that I could print them on the back of the DVD. Is there any way to get that info out of iMovie or iDVD? I searched everywhere and finally gave up and typed them into the DVD software that I use to create the front, back and label for the DVD. Thanks in advance!
- Fred

Can’t be done in iDVD 5.

Similar Messages

  • How can I make the main JFrame centered?

    I'm using netbeans to create my program. I'm currently using a JFrame to do all my GUI.
    My problem is that when I create other JFrames within the Main JFrame, I can center that window by using, nameFrame.setLocationRelativeTo(null);
    but I don't know how to do it on the main frame. The main frame doesn't have a variable name and plus I don't know where I would put the code in.

    Caarmel wrote:
    you can use
    super.setLocationRelativeTo(null);or
    this.setLocationRelativeTo(null);
    Or more simplysetLocationRelativeTo(null);db

  • How can I make PLAY button be selected by default in top menu?

    Hi, I usually have the PLAY button and all the scene selection buttons show up in the same top menu on my DVD's. Is there a way to have the PLAY button be the one that is initially selected when the DVD starts up. In other words, I don't want people to have to scroll the various buttons on the menu to get to the PLAY button. I want it to be selected by default, so all they have to do is hit the PLAY button on their remote control to start the movie.
    Thanks, Bob

    I think Robert was referring to the triangular play button on the simulator control panel rather than the button on his menu marked 'Play'...
    Robert - the 'Enter' button (or your 'Return' key on your keyboard) are the only ways you'll get the simulator to begin to play your project. The Triangular play button is for when you are in a motion menu or track and you pause and re-start playback, and isn't used to select entries on the menu. When you start a track, note how the triangular play button becomes a pause button when the track starts running, and it is no longer greyed out... if you click it, you'll see the triangle return and also not be greyed out.

  • How can I make tree view for hierarchical data from select with connect by?

    If we have selected hierachy with connect by clause, how can we make it to see in tree view?

    You can't do this using the ADF, Tree Binding used by JHeadstart.
    However, If you have a recursive relationship (for example managerid) you can get a tree what you want as follows:
    - create one root ViewObject that returns the top-level employees without a manager by setting the where clause to managerid=null
    - create a second ViewObject that simply queries all employees
    - Create a ViewLink between the two view objects, and create a nested VO usage in the app module for the second view object
    - Create corresponding nested group in the application definition file and set the layout style to "tree-form" on both groups.
    See Developers Guide, chapter 3, section recursive trees for more info.
    Steven Davelaar,
    JHeadstart Team.

  • I synced two of my email accounts via gmail's POP3 thing. But now my iphone's gmail inbox shows a random selection of emails (not most recent ones that are in my inbox). How can I make my iphone inbox match what I see when I log on using a PC?

    I synced two of my email accounts via gmail's POP3 capabilities. But now my iphone's gmail inbox only shows a random selection of emails (i.e. right now it is May 31, 2013 but the emails in my inbox are a couple from Nov 12, a few from Oct 12, and then some way older than that and so on.When I log into my gmail from a computer, I see all my emails in the logical, standard order. How can I make my iphone inbox match what I see when I log on using a PC?

    If you're trying to decide between using POP and IMAP, we encourage you to use IMAP.
    Unlike POP, IMAP offers two-way communication between your web Gmail and your email client. This means when you log in to Gmail using a web browser, actions you perform on email clients and mobile devices (ex: putting mail in a 'work' folder) will instantly and automatically appear in Gmail (ex: it will already have a 'work' label on that email the next time you sign in).
    IMAP also provides a better method to access your mail from multiple devices. If you check your email at work, on your mobile phone, and again at home, IMAP ensures that new mail is accessible from any device at any given time.
    Finally, IMAP offers a more stable experience overall. Whereas POP is prone to losing messages or downloading the same messages multiple times, IMAP avoids this through two-way syncing capabilities between your mail clients and your web Gmail.
    That is from the page that you linked- does highlighted part of message ring a bell?

  • How can I make new pages software spellcheck a selection like in appleworks?

    How can I make new pages software spellcheck a selection like in appleworks?
    I just installed pages a new download from apple store.
    1. I cannot find any way to activate a spellcheck for a selection in a document.
    2. I want to elemenate a red line under a word it doesn't like the spelling of.

  • "I have to manually select pop up blocker everytime i open firefox. how can i make it permenent?'

    i have to manually select pop up blocker everytime i open new firefox window. How can i make this arrangement permenent?
    == This happened ==
    Every time Firefox opened
    == a week ago

    See http://kb.mozillazine.org/Preferences_not_saved

  • I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when i select the customer?

    I have created a spreadsheet on numbers for ipad with a list of customers as a drop down menu. How can i make their address appear underneath when I select the customer?
    iselect the customer?

    Hi bazza,
    We won't be able to put the address from a formula into the same cell that you enter the customer's name. We can put the address in the cell under the customers name.
    First let's take James advice and concatenate the address in the address table.
    Here is the formula in G2
    =CONCATENATE(B2&"
    ",C2&"
    ",D2&"
    ",E2)
    It shows this way because after I clicked on B2 and typed [&"] (no brackets) I typed option-return
    This gives you your new line. Then I typed the closing ". I repeated this for the rest of the address.
    Next we want to bring this to your order sheet. I prefer using the two formulas OFFSET and MATCH instead of VLOOKUP.
    base tells OFFSETwhere to start counting from. Click A1.
    row-offset is for the row. we will use MATCH() -1 to give us the row.
    What MATCH does is give you the row number where something is found and you can specify an exact match. I usually construct the MATCH formula first and then cut and paste it into OFFSET. MATCH looks like this: MATCH(A2,Table 1::A,0). A2 is what we are looking for, Table 1A::A is where we are looking (the entire column A), and 0 means we want an exact match. Can you see it inside the OFFSET formula? Notice that we had to subtract 1 from its result.
    column-offset tells OFFSET which column A=0 so we want 6.
    we ignore "rows", "colomns" we don't need them.
    If this seems like too much, just break it down into small pieces.
    quinn

  • Main iTunes screen: can't make any adjustments to select-deselect apps,etc

    I'm helping a PC friend of mine. He has iPad 2, W7-fresh install, latest iTunes with iPad connected and viewing the contents on main iTunes screen, he can not make any adjustments to selecting apps (putting a check box next to app to include in next sync for ex.) He can not click on the mini ipad desktop screens for each page (along side the right side) to jump to different pages and rearrange icons. WEIRD! I've never seen this on the Mac side.
    Almost seems like some type of permissions issue in windows...???  HELP ! ! !

    solved it. He was working between 2 PCs and did not "Authorize" under AppleStore menu listing for this new PC.

  • HT1399 Hi! The "chapter" menu does not appear when I open a book in itunes. How can I make it appear?

    Hi! The "chapter" menu does not appear when I open a book in itunes. How can I make it appear? In fact, one time it did appear, but it seems to have been more of an incident.

    Books are meant to be read on your Devices through iBook App and will not work on iTunes.

  • How can I make an external link (to a different folder) from the main menu?

    How can I make an external link (to a different folder) from the main menu?

    If the folder is outside the Muse page, you will have to insert manual HTML to define a more complex URL like e.g. ../_stuff for going one level up and then into a folder called "_stuff" The deeper you are in the hierarchy, the more ../ you will have to add to climb up.
    Mylenium

  • How can we make the selected Debug User Agent Netscape 7.0 stick?

    To get into http://gap.com I have to go to the Debug menu, choose User Agent and choose Netscape 7.0.
    It works Ok.
    Then I quit Safari. Get back into Safari. User Agent is back to Automatically Chosen, and gap.com to not working.
    How can we make the selected User Agent stick?
    Thanks,
    Roberto

    Unfortunately, I don't think there is an automated way of going about this. To begin with, the 'Debug' menu was never meant to be user accessible in the most common context.
    However, that said, you could lessen the pain by assigning a keyboard shortcut to the 'Netscape 7.0' menu-item in the 'Keyboard & Mouse' preference pane (under the 'Keyboard Shortcuts' tab). Hope that helps, somewhat.
    Yang

  • How can i make any of the choices in a JRadioButtons not selectable?

    How can i make any of the choices in a JRadioButtons not selectable? The user cannot select any of them.. I have made logical relationship between JRadioButtons by the ButtonGroup..
    thanks..

    setEnabled( false );

  • Until the most recent update when the autocomplete location bar was selected, it "went" with no further clicking. Now I have to click the refresh arrow. It won't even work with the return. How can I make it work the old easier way?

    Until the most recent update when the url that I wanted in the autocomplete location bar was selected, it "went" with no further clicking. Now I have to click the refresh arrow. It won't even work with the return. How can I make it work the old easier way?

    cor-el, thank you so much. That fixed it, but does this mean I can't use AVG Safe Search.Is there a substitute? I do like the security (hopefully real) that it offers. What now? How do I get out of Safe Mode?
    Sherry

  • How can i make a  flowing toolbar that stays in front of the main frame?

    I want to make a toolbar that has to stay in front of one of my JInternalFrame, this toolbar will have two buttons and they will change the states of some TextPanes in the JInternalFrame (font,styles, etc.). How can i do so?? how can i make it flow on the internalFrame? how can i make it interact with the internal frame's components? and how can i associate both of them ( their 'actionPerform') ??
    thank's

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/

Maybe you are looking for

  • Moving a library to an external drive

    I've been digitizing my CD's to load onto a new ipod. So now I have something like 60gbs of music that I would really prefer to keep stored on an external HD and not eat up disc space on my G5. Actually I ALREADY have this music library backed up on

  • Failed JCO destination name 'WD_RFC_METADATA_DEST'    and MODEL DATA

    Hi Friends I am created "WD_RFC_METADATA_DEST". this meta data.When i am created this metadata i was called message server as technical system of CRM server. means i am created metadata for CRM System Once metadata had complted then i was cheing clic

  • Finding source database table/column name for a column in a view

    Hi i need to be able to identify the original database table/column name for a column in a view. e.g. say i have a view like this create v1 as select a.name fname, b.name bname, c.name cname,...... from u1.names a, u2.names b. u3.names c where .....

  • Screen shots - how to copy to e-mails and in forum communication?

    I now know how to make a screen shot, but how can I copy the screen shot into an e-mail and in the reply to a question in forums? Thank you for helping me out Harry

  • Text engine won't initalize in CS5

    I had no problems with CS5 until today.  I downloaded a trial version of In Design.  Now, the text engine in CS5 won't initialize.  What can I do?  I tried to call the phone support and he kept trying to sell me CS6.  I got so frustrated I hung up!