How do I make track end jump go to menu and highlight next button.

I have a DVD with several programmes each with its own menu button, with track (button) one as the highlighted default. I would like the end jump of each programme to be back to the menu (easy) BUT with the button for the next track highlighted. How do I do that.

Click on the Track your want to jump from - then in the properties panel select "End Jump". A pop out menu will appear giving you the choice of where to go. Select the Menu you want and choose the Button you want to land on in the list.

Similar Messages

  • How do I make this code generate a new pro when the "NEXT" button is pushed

    How do I make this code generate a new set of problem when the "NEXT" Button is pushed
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    /* Figure out how to create a new set of problms
    * Type a list of specifications, include a list of test cases
    * DONE :]
    package javaapplication1;
    import java.awt.GridLayout;
    import java.awt.Window;
    import javax.swing.*;
    import java.awt.event.*;
    * @author Baba Akinlolu -
    class Grid extends JFrame{
        int done = 0;
        final int score = 0;
        final int total = 0;           
            //Create Panels
            JPanel p2 = new JPanel();
            JPanel p3 = new JPanel();
            final JPanel p1 = new JPanel();
            //Create Radio buttons & group them
            ButtonGroup group = new ButtonGroup();
            final JRadioButton ADD = new JRadioButton("Addition");
            final JRadioButton SUB = new JRadioButton("Subtraction");
            final JRadioButton MUL = new JRadioButton("Multiplication");
            final JRadioButton DIV = new JRadioButton("Division");
            //Create buttons
            JButton NEXT = new JButton("NEXT");
            JButton END = new JButton("End");
            //Create Labels
            JLabel l1 = new JLabel("First num");
            JLabel l2 = new JLabel("Second num");
            JLabel l3 = new JLabel("Answer:");
            JLabel l4 = new JLabel("Score:");
            final JLabel l5 = new JLabel("");
            JLabel l6 = new JLabel("/");
            final JLabel l7 = new JLabel("");
            //Create Textfields
            final JTextField number = new JTextField(Generator1());
            final JTextField number2 = new JTextField(Generator1());
            final JTextField answer = new JTextField(5);
        Grid(){
            setLayout(new GridLayout(4, 4, 2 , 2));
            p2.add(ADD);
            p2.add(SUB);
            group.add(ADD);
            group.add(SUB);
            group.add(MUL);
            group.add(DIV);
            p2.add(ADD);
            p2.add(SUB);
            p2.add(DIV);
            p2.add(MUL);
            //Add to panels
            p1.add(l1);
            p1.add(number);
            p1.add(l2);
            p1.add(number2);
            p1.add(l3);
            p1.add(answer);
            p1.add(l4);
            p1.add(l5);
            p1.add(l6);
            p1.add(l7);
            p3.add(NEXT);
            p3.add(END);
            //Add panels
            add(p2);
            add(p1);
            add(p3);
            //Create Listners
            Listeners();
    void Listeners(){
          NEXT.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
             int answer1 = 0;
             //Grab the numbers entered
             int numm1 = Integer.parseInt(number.getText());
             int numm2 = Integer.parseInt(number2.getText());
             int nummsanswer = Integer.parseInt(answer.getText());
             //Set the score and total into new variabls
             int nummscore = score;
             int nummtotal = total;
             //Check if the add radio button is selected if so add
             if (ADD.isSelected() == true){
                 answer1 = numm1 + numm2;
             //otherwise check if the subtract button is selected if so subtract
             else if (SUB.isSelected() == true){
                 answer1 = numm1 - numm2;
             //check if the multiplication button is selected if so multiply
             else if (MUL.isSelected() == true){
                 answer1 = numm1 * numm2;
             //check if the division button is selected if so divide
             else if (DIV.isSelected() == true){
                 answer1 = numm1 / numm2;
             //If the answer user entered is the same with th true answer
             if (nummsanswer == answer1){
                 //add to the total and score
                 nummtotal += 1;
                 nummscore += 1;
                 //Convert the input back to String
                 String newscore = String.valueOf(nummscore);
                 String newtotal = String.valueOf(nummtotal);
                 //Set the text
                 l5.setText(newscore);
                 l7.setText(newtotal);
             //Otherwise just increase the total counter
             else {
                 nummtotal += 1;
                 String newtotal = String.valueOf(nummtotal);
                 l7.setText(newtotal);
      //Create End listener
    END.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            // get the root window and call dispose on it
            Window win = SwingUtilities.getWindowAncestor(p1);
            win.dispose();
    //new Grid();
    String Generator1(){
         int randomnum;
         randomnum = (1 + (int)(Math.random() * 100));
         String randomnumm = String.valueOf(randomnum);
         return randomnumm;
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
            JFrame frame = new Grid();
            frame.setTitle("Flashcard Testing");
            frame.setSize(500, 200);
            frame.setLocationRelativeTo(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    }Edited by: SirSaula on Dec 7, 2009 10:17 AM

    Not only are you continuing to post in the wrong forum but now you are multiposting: [http://forums.sun.com/thread.jspa?threadID=5418935]
    If people haven't answered you other posting its probably because we don't understand the question. Quit cluttering the forum by asking the same question over and over and then next time you have a new question post it in the proper forum. Your first posting was moved becuase you didn't post it properly.

  • Does track end jump trump chapter or story end jump?

    I have a DVD with 1 menu & 3 tracks. Tracks 1 & 2 each contain l short video (different audio or video formats) and track 3 contains 3 short videos which I have broken into 1 story w/3 chapters. On track 1, there is 1 chapter marker and I have set its end jump back to the menu. The end jump for the track itself is set to Track 2. Button 1 connection is set to the chapter marker. Ditto for track 2 except its end jump is set to track 3 while its one chapter marker end jump is set to menu 1. Button 2 is targeted to track 2, chapter 1. Track 3 has 3 chapters. It's end jump is set to menu 1. The chapters within the story are also set to menu 1 and it works the way I want it to. Button 6 is a PLAY ALL button targeted to track 1. When I select button 1, the video ends and continues on to track 2 instead of going back to menu 1;. When I select button 2, it also contiunues on (to track 3) instead of jumping back to menu 1. My goal was to be able to access each individual video and then jump back to the main menu. I tried adding stories to each of Track 1 & 2 and making the story end jump go back to he main menu but it seems the track end jump trumps both chapter & story end jumps. Anybody have any solutions to my problem? thanks.
    Steve

    Hi:
    You can do it using a script. Take the DVDSP User Manual and look for the topic Jumping to a Menu's Loop Point (Chapter 14 - Creating Scripts) and you'll find a detailed description of how to do it.
    DVDSP User Manual download page
    Hope it helps!
    (1191)
      Alberto

  • How can i make the end of a text higher than the rest in 3D?

    I'm designing a 3D text for the outlet store of www.badkamermarkt.nl/ and would like to know how I can make the end of the text higher than the rest in 3D.

    Hi,
    Can you attach a comp of what you're trying to accomplish, instead of a live link to a commercial home page?
    Are you wanting to make the country code of the url bigger like this?
    regards,
    steve

  • How do I make a slow  spinning movement so character and scene turns upside down?

    How do I make a slow  spinning movement so character and scene turns upside down?
    It's for a dream sequence.

    The better method (I feel) is to rotate the camera when shooting.
    Certainly that is better. However, I don't have a way to do that, so I imagine that most people don't either. I can turn my tripod's head on its side, but upside down? Not so easy.
    Having said that, there are camera cages designed to do that.
    It is true that my way doesn't fill the frame so one way to handle that is to do it on a copy of the video on a higher track, and blur the heck out of the original to keep the frame filled. Some amount of blur is often associated with dream sequences.

  • How do I make it so users can log in and sign up on my adobe muse website

    How do I make it so users can log in and sign up on my adobe muse website?

    If you would read through the Muse forum, this subject has come up multiple times.
    Muse does not currently support CMS, passwords, logins or bespoke client areas.

  • When i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    when i burn videos to a dvd-r disc it works on my macbook but not on a windows/pc or my dvd player. How can i make it work on all the above and not just a mac product?

    Unfortunately, the recording & movie industry does not respect the rights of the people who make them money, and thus you can only use the paid-for content in ways they see fit. Even if I lived in a bunker where no one else could possibly see the movie I paid for, therefor I'm not 'sharing it illegally', I would still not be allowed in a blue moon to copy that movie to DVD for TV viewing. Someone will tell you to get an AppleTV. How about Apple give us one for free? Until this changes, people wanting to use their content in multiple locations will continue to download music & movies via torrents, legally or illegally.

  • How can you make your persona show on the top and bottom? Also can you make it bigger at the top to show more of the picture?

    How can you make your persona show on the top and bottom?
    Also can you make it bigger at the top to show more of the picture?

    Add extra empty toolbars if you want to see more of the persona.<br />
    You can create extra toolbars to get extra space via View > Toolbars > Customize<br />
    You have to put something on a toolbar (drag a Space item onto it) before closing the Customize window because empty toolbars are automatically removed.<br />
    See http://kb.mozillazine.org/Toolbar_customization

  • How can I make a global change so all controls and indicators labels on the front panel change to another colour?

    How can I make a global change so all controls and indicators labels on the front panel change to another colour?
    I need to change the front panel so that it can be used in a dark environment.

    Hi
    The only way I see, is to use the "Controls[]" property and iterate through all of them. But don't forget about nested elements (i.e. clusters, tab-controls, ...).
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...

  • How can I make an image appear partially in front and partially behind another layer in Adobe Illustrator?

    How can I make an image appear partially in front and partially behind another layer in Adobe Illustrator?

    Put the image behind the layer (at the back of it or on a layer below). With it still selected, Copy.
    Now Paste in Front (Ctrl+F). Depending on your Paste Remembers Layers setting, you may have to bring the newly pasted copy to the front, or to the upper layer.
    Draw a shape over the image to define the portion of it you want to appear "in front."
    With the shape and the image selected, clip the image using the shape. (Object > Clipping Mask > Make)

  • How do I make an area of my clip colour and the rest B&W?

    I heard about masking but how do I make an area of my clip colour and the rest B&W?

    The filter you can use is Desaturate with Amount=100 in Image Control.
    If you want to apply it to a fixed area within your clip, put a copy of the clip in V2 on top of the priginal (supposing your clip is in V1), apply Desaturate and use Crop in Motion tab of the viewer to define the edges of the rectangle; you can also use Edge Feather to smooth the borders.
    If the portion you want black&white is actually a selected person or object in the clip then you must apply Chroma Keyer or 4/8 Point Matte to isolate that portion before applying Desaturate.
    I hope I was clear...
    Piero

  • I only see the phone numbers of my contacts when using iMessage on my MAC, whereas I see the names on my iPhone. Why, and how can I make it so I see the names (and pics) on my MAC?

    I only see the phone numbers of my contacts when using iMessage on my MAC, whereas I see the names on my iPhone. Why, and how can I make it so I see the names (and pics) on my MAC?

    Thanks Eric, but that was already turned on. I just now tried turning it off and on again, no change. Actually, I"m more interested in seeing the names than the pictures. I now only see the phone numbers and generic avatars where pics would be.

  • I have had Firefox for years and in the last 2 weeks, I am getting all of these stupid Pop ups about credit reports and some Epic Play thing. How can I make sure I do not get them and why all of a sudden?

    I have had Firefox for years and in the last 2 weeks, I am getting all of these stupid Pop ups about credit reports and some Epic Play thing. How can I make sure I do not get them and why all of a sudden?

    Identify and remove adware/malware
    http://www.thesafemac.com/arg/

  • How can I make it put the folder in the current highlighted folder?

    When I am in a sub folder and want to create a new folder I got to File > New Folder and it always create the folder at the route in list view.
    How can I make it put the folder in the current highlighted folder?
    Kevin

    Open the subfolder in it's own window. The window has focus, that's why the new folder is created at its root level.

  • How can I make my computer only recognize my network and not that of one of my neighbors?

    How can I make my computer only recognize my network and not that of one of my neighbors? This is for when I am at home, and everytime the computer goes to sleep it essentially loses the connection, only to pick up my neighbors network when it is awaken.
    I am on Comcast (Xfinity) Highspeed Cable wireless modem/router
    Thanks in advance!
    Mark

    You can make your network the preferred network.
     > System Preferences... > Network > Advanced... > Drag your preferred network name to the top of the list.

Maybe you are looking for

  • Disc Utility crashes every time I try to open it.

    I've been having some really frustrating issues since I installed Snow Leopard. I've been having applications crashing left and right. One of my main issues is that Disc Utility always crashes when I try to open it. Any ideas on how to fix this? This

  • Urgent Application Express response

    Hi all: I am developing an application using APEX, this application will be requested from an external web application. The http request of the external web application will add some variables which will include users information that I will need to

  • Printer will only work connected with USB direct to computer

    A few weeks ago I was printing a long document. In the middle of it, it went on hold. Since then I cannot print wireless with either of my computers. If I plug the USB direct from the printer to the computer the printer will work. I cannot print wire

  • Day limited in payment terms

    Hello All, Can anyone please let me know the meaning and usage of "Day Limit" with a business example please. Thank you, Srinivas

  • Saving Fireworks PNG as PSD

    I have a Fireworks png file that i am trying to save out as a psd. I can do so, but when I open in Photoshop, the layer groups I created in my Fireworks png file are not preserved. The layers stay put, but photoshop ignores the layer folder (or group