Activate Buttons before Loop menu

Can I have the buttons functional before the background goes into a loop? Thanks.

Erik:
Your buttons overlay will become active at the Loop Point time, not before.
I'm not sure what you want to get but I presume you have a backgorund video with some INTRO and then the LOOPING part, but you want buttons get activated at time 00:00 but you want the menu Loop at i.e. time 05:00 secs.
If so, you can get such effect building 2 independen menus.
In teh first, use the full background video (INTRO + LOOPING parts) setting no looping point (00:00). Set the menu properties to auto Jump to the second menu.
Duplicate it with exact same buttons layout but this time use as background just the LOOPING part of your video. Again set the loop point to 00:00 and leave this menu looping on itself.
Hope that makes sense ! ;D
  Alberto

Similar Messages

  • First Play activates button instead of menu

    Good afternoon, in DVDSP2, I have a menu that has a looped video as background with two buttons on top created by default shapes. Button one links to a Play All script and the second to a chapter menu.
    What happens in simulator is that the menu with the video flashes by for a second then imediatly plays the link of button 1, but still playing the audio of the looped video of first menu. The same occures with button2-content if I make that one as button 1. In Connections it only says Menu1 on First play, not button 1 or anything. Have I missed something or doesn't this just sound as a bugg? Thanks for answering, regards Erik

    Stan I don't see any overrides in the project.
    The following should outline the problem more specifically
    When the disk is inserted into the DVD player initially and the door closes, the disk plays the Main Menu first properly and life is good.
    During the Main Menu if I hit Stop it will change to the blue screen of the DVD player.
    When I hit play from this blue screen the movie starts instead of resuming the Main Menu.

  • Menu Button from sub menu to main menu (transition movie in the way.)

    In the general tab of the disc menu I set the menu button to go to the main menu.
    When I click "menu" on my remote in simulation from a sub menu I expect it to return me to the the main menu.
    However, clicking menu from a sub menu automatically brings me up one connection.
    I have transition movies that are between the main menu and the sub menu.
    So effectively, the menu button is a loop if a viewer tries to navigate upward with the menu button from a sub menu. They see the transitional movie and return to the sub menu they were trying to navigate from.
    On page 609 of the manual it says...
    Menu: Supported by all elements that can set remote control settings (disc, track, story, marker, and slideshow) except menus. You should generally link this button to the last menu viewed.
    Is there a work around that will allow me to make the menu button link from a sub menu to the main menu, even if I have a transition movie in between?
    Thanks,
    Tom
    Power Mac Dual 1.0 GHz G4, Quick Silver   Mac OS X (10.4.3)   1.5 Gig Ram, 250 gig internal drive, 2 x G-Raid500, FW800 Sonnet Card, AJA IO
    Power Mac Dual 1.0 GHz G4, Quick Silver   Mac OS X (10.4.3)   1.5 Gig Ram, 250 gig internal drive, 2 x G-Raid500, FW800 Sonnet Card, AJA IO

    Hang on Tom - are you saying that you are in a sub menu, pressing the 'menu' button on your remote control, seeing the transition and ending back at the menu you started from?
    I would expect this if you used the menu button...
    What happens is the menu button acts as a resume function if you are in a menu. That is, it will play the last piece of footage - your transition. This is set to go back to the sub menu, so that's where you end up. Read those details again... the bit where it said 'except menus'.
    If you are in a menu and want to go up one level then you need to either use the Title button (if the title menu is the one you want to get to), or the return button (which won't work all that well). The best way, however, is to add a button on your menu screen which lets the viewer click it to go to the menu that you want.

  • In iDVD pro, can you run a video before the menu appears?

    You've probably seen it before: you pop in a DVD, a little movie plays then wipes to the background with the buttons neatly arranged. Is there a way to do this in iDVD pro? I can figure out how to make the buttons come in later.

    There is no iDVD 'pro' (there is DVD Studio Pro, but for want to do, you don't need it).
    iDVD 6 will let you play a movie before the menu comes up - it's very easy.

  • Auto-Activate Buttons

    I'm working on a menu that has an intro motion graphic. After the graphic, I want the menu to automatically go to the second menu, which is a menu with a still background. I have Auto Action selected for button one and it's targeted to the second menu, but nothing happens unless I click on the button. Is there any way that I can get the button to auto activate once it appears on screen and go to the second menu?
    Thanks
    Kenneth

    Set the end action for the first menu to go to the second menu (or make the first menu a track and have it jump to the second menu) Auto activate buttons will require clicks on some things, so it is safer to avoid, especially since there is the easy workaround that is going to be more reliable

  • When I drag a loop into the arrange area, it sounds completely different from how it sounds in the loop menu.  What am I doing wrong.  (I've started using Logic 9 today)

    When I drag a loop into my arrange area, it no longer sounds the way it did in my loops menu. 

    Hi, do you mean song key wise not sounding the same? Then this might be the reason:
    Also you might find some interesting facts over here:
    http://help.apple.com/logicpro/mac/10/#lgcpd770ce07
    Have a nice day!

  • Problem with java swing button and loop

    Problem with java swing button and loop
    I�m using VAJ 4.0. and I�m doing normal GUI application. I have next problem.
    I have in the same class two jswing buttons named start (ivjGStart) and stop (ivjGStop) and private static int field named Status where initial value is 0. This buttons should work something like this:
    When I click on start button it must do next:
    Start button must set disenabled and Stop button must set enabled and selected. Field status is set to 1, because this is a condition in next procedure in some loop. And then procedure named IzvajajNeprekinjeno() is invoked.
    And when I click on stop button it must do next:
    Start button must set enabled and selected and Stop button must set disenabled.
    Field status is set to 0.
    This works everything fine without loop �do .. while� inside the procedure IzvajajNeprekinjeno(). But when used this loop the start button all the time stay (like) pressed. And this means that a can�t stop my loop.
    There is java code, so you can get better picture:
    /** start button */
    public void gStart_ActionEvents() {
    try {
    ivjGStart.setEnabled(false);
    ivjGStop.setEnabled(true);
    ivjGStop.setSelected(true);
    getJTextPane1().setText("Program is running ...");
    Status = 1;
    } catch (Exception e) {}
    /** stop button */
    public void gStop_ActionEvents() {
    try {
    ivjGStart.setEnabled(true);
    ivjGStart.setSelected(true);
    ivjGStop.setEnabled(false);
    getJTextPane1().setText("Program is NOT running ...");
    Status = 0;
    } catch (Exception e) {
    /** procedure IzvajajNeprekinjeno() */
    public void IzvajajNeprekinjeno() {  //RunLoop
    try {
    int zamik = 2000; //delay
    do {
    Thread.sleep(zamik);
    PreberiDat(); //procedure
    } while (Status == 1);
    } catch (Exception e) {
    So, I'm asking what I have to do, that start button will not all the time stay pressed? Or some other aspect of solving this problem.
    Any help will be appreciated.
    Best regards,
    Tomi

    This is a multi thread problem. When you start the gui, it is running in one thread. Lets call that GUI_Thread so we know what we are talking about.
    Since java is task-based this will happen if you do like this:
    1. Button "Start" is pressed. Thread running: GUI_Thread
    2. Event gStart_ActionEvents() called. Thread running: GUI_Thread
    3. Method IzvajajNeprekinjeno() called. Thread running: GUI_Thread
    4. Sleep in method IzvajajNeprekinjeno() on thread GUI_Thread
    5. Call PreberiDat(). Thread running: GUI_Thread
    6. Check status. If == 1, go tho 4. Thread running: GUI_Thread.
    Since the method IzvajajNeprekinjeno() (what does that mean?) and the GUI is running in the same thread and the event that the Start button has thrown isn't done yet, the program will go on in the IzvajajNeprekinjeno() method forever and never let you press the Stop-button.
    What you have to do is do put either the GUI in a thread of its own or start a new thread that will do the task of the IzvajajNeprekinjeno() method.
    http://java.sun.com/docs/books/tutorial/uiswing/index.html
    This tutorial explains how to build a multi threaded gui.
    /Lime

  • I don't have one single button for Firefox menu in spite of downloading Firefox 5 Version. The page presentation has File, Edit, View, History, Bookmarks, Tools and Help. Why my page is different from the feature shown in your product presentation ?

    I have not Windows NT.
    '''I have Windows 7'''

    You see the orange (on Linux gray) Firefox button if the Menu Bar is hidden, so you need to hide the Menu bar via View > Toolbars, also accessible via Firefox > Options.<br />
    If you need to access the hidden Menu bar then press F10 or hold down the Alt key to make the Menu Bar appear temporarily.<br />
    You can place the Tab Bar on top.
    * View > Toolbars : [ ] Menu Bar
    * View > Toolbars : [X] Tabs on Top
    * http://www.mozilla.com/firefox/features.html

  • Activate button not working in Site Collection features

    I just created a new web application and then Site Collection with "Team Site" template. Now when I want to activate "Publishing infrastructure" the "ACTIVATE" button is not working ..even not any button is working..whenever
    click on any button the page scrolls on the top.

    Hi,
    According to your post, my understanding is that you could not activate the “Publishing infrastructure” feature.
    To narrow the issue, you can check with the following steps.
    Did the issue occur in other browsers? You can use other browsers, such as Firefox or Chrome, to check whether it works.
    Did the issue occur in other site collections? You can create a new site collection or use other site collections in other web applications to check whether it works.
    You can also check the event log and ULS log to see if anything unexpected occurred.
    To check event log, click the Start button and type “Event Viewer” in the Search box.
    For SharePoint 2013, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to Enable the SAVE button in the Menu Bar of the Invoice Document.

    Hi.
    How to Enable the SAVE button in the Menu Bar of the Invoice Document as it is disabled for me.
    I would like to save the Invoice document in PDF  format.
    Regards
    Irfan

    Hi,
    Normally, for the archiving or generation of the invoice document in PDF format is handled by maintaining the output records through VV31/VV32 with the relevant printer, storage mode ( 3- print and archive or 2- archive only ), no. of messages ( means no of copies ) in the communication method.
    Then when you click the print button through VF03 in the print options pop-up you get a print at the physical printer and at the same time an archived copy ( PDF copy ) attached with the document.
    So, please make sure the output records are fine to allow a PDF copy generated and then try to print and check in VF03 by entering into the billing document.
    Hope this helps you.
    However, from the print preview you normally would not be allowed to save or print.
    Regards,
    Ram
    Edited by: Ramakrishna Peri on Apr 3, 2009 9:16 AM

  • Please help! How can I validate Radio Buttons and List Menu with PHP.

    Hello everyone, I have been learning PHP step by step and
    making little projects.
    The point is I find it easy to learn by doing "practical
    projects."
    I have been reading the David Powers's Book on PHP Solutions
    and it's really great, however there is nothing mentioned regarding
    Validating Radio buttons. I know the book cannot cover every aspect
    of PHP and maybe someone in here can help.
    I have been learning how to process HTML forms with PHP.
    The problem is every book or tutorial I have read or
    encountered fall short on validation.
    I'm wondering how I can learn to validate Radio Buttons and
    Select List Menu.
    I have managed to create validation for all other fields but
    have no clue as to how I can get validation for Radio Buttons and
    List Menu.
    I would also like an error message echoed when the user does
    not click a button or make a selection and try to submit the form.
    I would appreciate any help.
    Patrick

    It's not that default value is "None." In fact it's not. It
    will only be
    "none" when the form is submitted.
    Also if your submit button is names 'send' then
    $_POST['send'] will only be
    set if the form was submitted.
    Make sure you didn't hit the refresh button on your browser
    which usually
    reposts the information. Also make sure you did not reach the
    form from
    another form with the same button names.
    Otherwise paste the snippet.
    Also you can check what fields are set in the post array by
    adding this to
    the top of (or anywhere on) your page:
    print_r($_POST);
    Cosmo
    "Webethics" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Off the top of my head this should be no different than
    your radio buttons
    > except that 'productSelection' will always fail the
    !isset check when the
    > form is submitted since the default value is "None", and
    therefore always
    > set. :-)
    >
    > So how about this..?
    > <?php
    > if (isset($_POST['send']) and
    ($_POST['productSelection'] == "None"))
    > {echo "Please select a product.";}
    > ?>
    >
    >
    >
    >
    > "Webethics" <[email protected]> wrote
    in message
    > news:[email protected]...
    > > Another question - how do i applied the code you
    just showed me to
    > > select
    > > menu
    > > or select list?
    > >
    > > This is the list:
    > >
    > > <div class="problemProduct">
    > > <label for="productSelection"><span
    class="product_label">Product
    > > Name.</span></label>
    > > <select name="productSelection" id="products"
    class="selection">
    > > <option value="None">-------------Select a
    product----------</option>
    > > <option value="Everex DVD Burner">Everex DVD
    Burner</option>
    > > <option value="Vidia DVD Burner">Vidia DVD
    Burner</option>
    > > <option value="Excerion Super Drive">Excerion
    Super Drive</option>
    > > <option value="Maxille Optical Multi
    Burner">Maxille Optical Multi
    > > Burner</option>
    > > <option value="Pavilion HD Drives">Pavilion
    HD Drives</option>
    > > </select>
    > > </div>
    > >
    > > I thought I could just change the name is the code
    from operatingSystem
    > > to
    > > productSelection.
    > >
    > > Something like this:
    > >
    > > From this:
    > >
    > > <?php
    > > if (isset($_POST[send]) and
    !isset($_POST['operatingSystem']))
    > > {echo "Please select an operating system.";}
    > > ?>
    > >
    > > To this:
    > >
    > > <?php
    > > if (isset($_POST[send]) and
    !isset($_POST['productSelection']))
    > > {echo "Please select an operating system.";}
    > > ?>
    > >
    > > But this does not work, any ideas?
    > >
    > > Patrick
    > >
    >
    >
    >
    >
    > Hey, I tried this about but as you mentioned, since the
    default product
    > value
    > is "None" an error message appears when the page loads.
    >
    > Is there a way to code this things so that even though
    the default value
    > is
    > "None" there ia no error message untle you hit the
    submit?
    >
    > When I applied the code, it messes up the previous code,
    now the operating
    > system is requiring an entry on page load.
    >
    > When I remove the code from the list menu everything
    goes back to normal.
    >
    > I know this is a little much but I have no other
    alternatives.
    >
    > Patrick
    >

  • Bidder should be able to get create response button before payment of Tender fee

    Hello Friends
    I would like to discuss and find solution for below scenario :-
    In case of Open Tender, Tender Fee is required to pay either Online/Offline before submission of bid because it is marked required in customization “Define Tendering Option”.  Subsequently When Vendor Clicks on Register button and system check whether Tender Fee is paid by the vendor or not. If tender fee is paid then system show “create Response button” but tender fee is not paid by the vender then system doesn’t show “Create Response button”.
    Business requirement is to Appear Create Response button before payment of Tender fee but when we marked “Tender Fee” as optional in customization “Define Tendering Option” than Create Response button is appear before payment of tender fee but other side from purchaser portal while payment offline payment, Tender Fee is not showing in drop down of Related link. I am looking a solution if Tender Fee is marked as optional to get Create response button and Tender Fee option is to be also show in drop down of Related link.
    Vendor Portal:
    Purchaser Portal:

    I doubt there will be a 1 per customer rule....this wasn't the case with the iPhone 4 and that release may have been one worthy of it since it was the first time after years of wanting it Verizon customers were getting the chance to get their hands on one. But as far as the original question, yes you can get it. You are well within the exchange period so you can either exchange or just return it now and then buy the 4s on the preorder date...or the store release date. If you have any concerns about the possibility of not liking the 4s after getting it and wanting to be able to exchange it after that you might want to just return the iPhone(s) you have now and then buy the 4s when available. I say this because if you exchange now and then decide you don't care for the 4s you won't be allowed to exchange again to a different device. It won't matter if you love the 4s....matters a lot if you don't and end up stuck with it because of that one exchange policy.

  • How do I get the Back Button drop down menu back?

    When surfing in a tab there used to be a drop down menu next to the forward and back buttons. It was a little tiny triangle looking arrow. This was really useful and needed. It is gone in Firefox 4 as far as I can see. I am using the default 4.0 Theme. If it is not there anymore I will have to go going back to 3.16 if the drop down menu is gone. Thanks for any help.

    ''How do I get the Back Button drop down menu back?''
    * "'''Back/forward dropmarker'''" extension<br>https://addons.mozilla.org/firefox/addon/backforward-dropmarker/
    I do prefer Right-click on tab for tab history, or hold a couple of seconds, as the drop-down marker takes up space and had been removing it myself. Although I think it should have been an option.

  • Using a Button Bar and Menu Control

    Hi All,
    I am using button bar and menu bar control .But the problem  i am facing is that  how to align menu to the bottom of respective button of button bar.
    Tanks In advance

    Hi All,
    I am using button bar and menu bar control .But the problem  i am facing is that  how to align menu to the bottom of respective button of button bar.
    Tanks In advance

  • An Apple genius pressed a few buttons before booting my computer then the screen changed to a database of parts of my computer and their status. How do i do this?

    An Apple genius pressed a few buttons before booting my computer then the screen changed to a database of parts of my computer and their status. How do i do this?

    Julianwerules wrote:
    then the screen changed to a database of parts of my computer and their status.
    can you elaborate more?   I'm not familiar with a database of parts..or I'm having a major brain ****.

Maybe you are looking for