Using one song for multiple menus

I know you can assign an audio file to each meu, but Is it possible to use one audio file that continues to play when you change menus?
Thanks for your help.

So your saying you can have, let say, 3 buttons on menu 1. One of these button is a "next menu" button. Pressing this will take you another menu without a break in audio? What command goes into the cell command?
By spec all cell need to be non-seamless if there is a command so I don't think its possible. I always love to be wrong though.
Here's a relevant thread that might help
http://dvdafteredit.com/node/1024

Similar Messages

  • Shall I use one datasource for multiple connection pool?

    Hi,
    I need to clarrify that, Shall I use one Datasource for multiple connection pool in distributed transaction?
    Thanks with regards
    Suresh

    No. If its transactions across multiple databases you should use different datasources.

  • To use one SessionInfo for multiple frames

    how to use one SessionInfo for master frame and other frame the detail
    Thanks for your reply.

    You can instantiate the SessionInfo and other dataproducer objects in frame1 and bind them to controls in the first and second frames.
    If you plan to change/execute queries pass the sessionInfo instance to the second frame.
    Hope this helps.
    Sathish
    null

  • Passing argument to, when using one class for multiple assets

    I had a class that I was passing a simple argument to like so:
    var quiz_1_2:CaseStudyQuiz = new CaseStudyQuiz(2);
    addChild(quiz_1_2);
    I now would like to use this class for multiple MCs in my library. I thought I could let Flash create a class for each of them and specifying the CaseStudyQuiz class as the Base class. When I do that, I get the following error:
    1136: Incorrect number of arguments.  Expected 0.
    Obviously this is because the class created by flash does not except an argument. Does that mean, I would have to create a seperate class for each of the movies that use that class? And if so, what would I have to do in that class for it to except the parameter and pass it on to my base class?
    Thank you very much for any help with this!!!

    use the super() function and pass your parameter.  but you still might get a runtime error but i don't think that will cause a problem.

  • How do I use one layer for multiple pages?

    I've been using Photoshop to create a series of web pages. I have about 20 such pages right now.
    Unfortunately, I need to change the navigation menu that is found on all 20 pages.
    To make these changes, do I need to change 20 different files? Or is there a way to link one layer group to multiple PSD files so that editing it once results in it changing on all 20 pages?
    Thanks,
    C

    You'll have to make some sort of change to each document, but it should only take a few minutes when there's only 20 of them. You edit the group in one, then for each of the others, simply duplicate or drag the edited group into it and delete the old group.
    There is also the option of structuring your workflow with Smart Objects which can be refreshed in each document with a common document containing only the menu group. For linking of Smart Object content, there is a third party plug-in but I don't know whether it is reliable.

  • How do I use one library for multiple iPods

    I have three girls that recently got iPod nano's. I would like to use only one library for their music etc. How do I do this. when I installed the first one it worked great. Then when I installed the second one it won't recognize the first one. Then when I went back to factory settings on the first and synched her music the second one is not recognized. Help......

    Sorry, guess I am not using the "technical lingo". I already had itunes on my computer for a medical review course that I purchased to study for a certification exam. When nano #1 was purchased I hooked it up, registered it, and synched music to it. When my daughter tried to play songs, the songs titles and songs were mixed (song didn't match title). I hooked it up to the computer. It said it needed to be formatted. So I did and reregistered and synced the songs back on. Everything ok. Second nano hooked up, registered, named different name than #1, synched with the music she wanted. Tried to hook up #1 and it didn't recognize the nano. I went to the website and found out how to "find" it on the computer, followed the instructions to find it, and again it had to be "formatted" to have it recognized. I was again able to sync her music. Will I have to do this everytime I try to sync more music? that could be a real pain!
    thanks for any help for this sometimes electronically challenged mom.

  • Using one library for multiple computers and accounts (not store accounts)

    Okay, we currently have four macs in the house. One was recently bought: i7 iMac (late 2009), another is dying: (mid 2005 iMac), another is going somewhere else: (late 2006 iMac) and another is a laptop: C2D MBP (late 2008). We might add another computer into the mix some time later.
    Anyway, what I want to do is have one iTunes library which all of the computers can access (even guest's/friend's computers). We have a Time Capsule, and as I have heard one can make the TC the HDD for the iTunes library, I thought it best for it to be there.
    The only thing is, how can each computer (and the possible multiple accounts) each access the same library, without duplicating and messing anything up? Is that possible? If it is too hard for multiple computers to do this, I would still want the (late 2009) iMac to be able to use the same library for the two accounts on it.
    Thanks.

    Make sure everything you want to share is on the centralized drive (music, video, and books, but if any of you have mobile devices, keep the apps on your local drive). Mount the drive on your computer. (Remember, from now on you must do this before starting iTunes.) If iTunes isn't running, start it now.
    At the moment iTunes thinks the library is on the local computer and has all the music on it so that has to be changed. Click on Music in the left window pane, select all, and delete. This deletes all the music from the library and, if you choose, from the computer too. (Until you are sure this set-up is to your liking, don't delete the music from the drive.) Now go to Preferences and select the Advanced tab. Set iTunes to look at the music folder on your shared drive. And finally, select File>Add to Library to repopulate your iTunes library. This could take a while if you have a large music collection.
    Since you changed the music location, anything that is added to one person's library will be saved onto the shared drive so it isn't too much of a hassle to manually add music. You'll have to rebuild playlists which is a minor hassle but it’s a one time deal.

  • How do I use one song for all Theme sub-menus?

    I'm using IDVD '08.I have created a theme with 3 chapter selection sub menus. Is there any way to choose a single song that plays from start to finish (and then loops normally) regardless of which submenu you happen to be in? I know how to add the same song to every submenu, but the problem is that every time you go back and forth between the submenus the song starts again at the beginning. It's very annoying. Any help would be much appreciated.

    Hi
    No I don't think this is possibly with iDVD.
    Never seen a Professional DVD that behaves like that either - so my plain guess is that
    not even DVD Studio Pro would be able to do it.
    Never seen this function in Roxio Toast™ either.
    All of them starts the audio file from start when changing menu - as far as I know.
    Sorry
    Yours Bengt W

  • Use one parameter for multiple markers in PreparedStatement?

    I have a prepared statement with a where clause of the following form:
    where x = ? or y = ?
    where the ? for x and y is the same literal value. Is there a more elegant way to handle this other than what I'm doing now (which I think is pretty clumsy):
    pstmt.setString(1, aValue);
    pstmt.setString(2, aValue);
    Obviously, I'd like to only set the value once, and have it used both places.

    No. If its transactions across multiple databases you should use different datasources.

  • Using one prompt for multiple fields in a report

    We are using Oracle CRM on Demand, Release 16.
    I have a report I am building that involves four different date fields. I'd like to give the user the ability to enter a date range for the date fields via a Prompt when the report executes. But the date range would be the same for all four date fields. Is there a way to capture the date range in one prompt, but use that same range in all four date fields in the report?

    I recommend to use two dashboard prompts, one for each date field of your range and each will set a presentation variable.
    Then use the FILTER metric function and reference the presentation variable.
    Best Regards,
    Christian

  • OpenScript 9.1 - use one script for multiple environments

    Greetings everyone.
    I am using Openscript 9.1 on Windows XP. I want to record a script on a web application hosted in one environment and reuse the same script (with minimal re-work) against the same web application hosted in a different environment. For example, record in development and reuse in test and production.
    From what I read on the Internet, the only way to do it is to find the URL in the Java code of the script and replace it as needed. Is there a more sophisticated way of doing this? Thanks in advance for your time and response.

    This one could work:
    WITH t AS (SELECT ROWNUM rn,
                      ' abcdefghijklmnopqrstuvwxyz' char_table
                 FROM all_objects)
    SELECT 1000 + ROWNUM - 1 empid,
           'king ' || char_counter,
           100 + (ROWNUM - 1) * 100 sal
      FROM (SELECT char_counter
              FROM (SELECT SUBSTR(t1.char_table, t1.rn, 1) || SUBSTR(t2.char_table, t2.rn, 1) char_counter
                      FROM t t1,
                           t t2
                     WHERE t1.rn <= 27
                       AND t2.rn <= 27
                       AND t2.rn >  t1.rn
             ORDER BY char_counter
    WHERE ROWNUM <= 100
    ; C.

  • Desperately need solution for multiple menus

    I'm using Dreamweaver 8 and am using only CSS for layout and
    controlling all the page elements. One thing I've never found any
    instruction books it is naming conventions when you're using
    multiple menus on a page. I give all my menus unique IDs and that
    seems to work so far BUT I've run into a problem now and have
    worked on fixes for about five hours. I'm completely baffled and
    wonder if there is a CSS was out there who can help out.
    The first 3 navigation menus appear properly and there are no
    problems. This page has the first three menus:
    http://www.aexcea.com/ANGELA/indexTest.html
    . It even worked fine when I did the header and footer as a PHP
    include:
    http://www.aexcea.com/ANGELA/indexTestIncludes.php
    So far, so good.
    Now I had to add a left navigation bar for the client and
    that's when all hell broke loose:
    http://www.aexcea.com/ANGELA/TemplateLeftNav.php
    4th menu
    added
    The fourth menu works but now the first three menus are going
    crazy. They don't display properly in Firefox and in IE they're
    jumping all over the place with the mouse overs. I've changed the
    names of all the menus so they are completely different from each
    other, I tried them as DIV ID, as SPan classes, as a combination of
    the two, I took out the PHP include, put the 4th menu CSS in its
    own file and I've studied the stylesheets till I'm bug-eyed, and I
    have no idea why it's acting this way.
    I'm including the stylesheets below with the relevant code
    and the HTML for the page were all 4 menus will be at the end.
    I'm at the end of my rope and I'm desperately hoping somebody
    can help. Also if anybody can shed some light on the standard
    naming conventions for multiple menus I'd be very grateful.
    Tatania

    The guy is totally correctin his review.
    That is how FireWire works. The FireWire bus will run only as fast as the slowest device on the bus. So as soon as plug in a FW400 device, everything is then clocked down to 400FW.
    If you need to have both FW800 and FW400 devices running at their native speeds you need two FW busses each with their own controller.
    Because of the limited expansion capability of the iMac, I don't see any way for you to get around this limitation.
    If you get a Mac Pro then you could use a FW PCIe card for the second bus and controller.
    Allan

  • Use one account for apps and other for itunes match

    Hello everybody
    My question today is quite simple. I use one account for apps and tv shows, but inwant to use a different itunes account for purchasing itunes match. How can I use them both on my devices? Will it be asking for my user-pass each time i play a song? What other thing should i consider?
    Thank you in advance

    I would strongly recommend you not do this.  You will regret it.
    I have played with this issue a lot.  You have to remain signed into match in order for it to show up on your phone. If you sign out to purchase an app or redownload one from your appstore id you use then match will be removed from your phone and when you go into your music app the icloud will not be there.  You then have to go sign back out of the store id you used for your app purchase and then sign back into match and everything will have to go though the download to your device process again.  This really is not what you want to do.
    Sign up to match with the apple id that you know you will use the most or has the most purchased items and use that for all purchases, i.e. books, apps, movies, and music.  You don't want to go though the other process.
    Plus apple will start not letting you sign into match because you signed out and back in, in to short a period of time.
    all store purchases on an iphone are linked to the store id.  if you sign out of your match id on the appstore and sign into another account to purchase an app then itunes match will sign out in the music app.  You can't have two store id's signed into your iphone at the same time.  They are all linked together.

  • Use 1 listener for multiple database in a server

    hi guys,
    just want to check whether this is the right way to configure my Listener.ORA . I am using 1 listener.ora to listen for incoming request connection from remote client. There are multiple databases installed in a server.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ora03)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = O11R2)
    (ORACLE_HOME = /oracle/app/oracle/product/11.2.0/db_1)
    (SID_NAME = O11R2)
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = O10G)
    (ORACLE_HOME = /oracle/app/oracle/product/10.2.0/db_1)
    (SID_NAME = O10G)
    )sorry i am reading about it so did not install another database to test out. Just thinking in the line that it mention that the list of SID is refering to the multiple database that is installed in a server and i am using 1 listener.
    Please further advice.

    Shivananda Rao wrote:
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ora03)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = O11R2)
    (ORACLE_HOME = /oracle/app/oracle/product/11.2.0/db_1)
    (SID_NAME = O11R2)
    (SID_DESC =
    (GLOBAL_DBNAME = O10G)
    (ORACLE_HOME = /oracle/app/oracle/product/10.2.0/db_1)
    (SID_NAME = O10G)
    )Please use as above. You can have one listener for multiple databases.right right so it the pattern goes like this:
    SID_LIST_LISTENER =
         (SID_LIST =
              (SID_DESC =
              (GLOBAL_DBNAME = AAAA)
              (ORACLE_HOME = /oracle/app/oracle/product/11.2.0/db_1)
              (SID_NAME = AAAA)
              (SID_DESC =
              (GLOBAL_DBNAME = BBBB)
              (ORACLE_HOME = /oracle/app/oracle/product/10.2.0/db_1)
              (SID_NAME = BBBB)
         )thanks !

  • Can you use one PC for 2 different Ipods, with out erasing the others music from Itunes?

    Can you use one PC for different Ipod touch's , with out erasing the other persons Itunes music?

    Yes.  See:
    How to use multiple iPods, iPads, or iPhones with one computer

Maybe you are looking for

  • Sharing internet with a pc

    I have two new computers (1 iMac 1 PC) and one old (iMac G5) I want to set up on a "in home" network to share files and internet connection. All three have wifi, the two macs have airport extreme cards and communicate with each other just fine. It se

  • IPhoto Questions:  Merge and Sort;  Cropping;  Collage

    Hello,      I have some iPhoto questions:      (1)  I have several different photos from different sources of my son's wedding.  I have merged the photos into one album and sorted them by date in iPhoto, but they are still showing all over the place.

  • Unzip file size

    Is there a way for me to know the size of an unzipped file before unzipping it?

  • ACR Overexposure with Nikon D3

    Exposure to the right (ETTR) is a standard technique that requires placing of the image highlights just short of clipping in the raw file. Such exposure is often judged by the histogram or blinking highlights in the camera preview of the image, but i

  • In serious need of help for huge Premiere Pro Picture glitch. Confounded beyond belief.

    Gents and ladies, I have been at this for two days and am in desperate need of help. Right now my editing in Premiere Pro is completely stalled due to a bizzare picture glitch. I am 100% stuck and unable to edit. When I add a picture to my bin, it's