Highlight Buttons in DVDSP

I create a button and select a highlight color for it, but when the DVD burns I cannot see which button I am selecting when played in my DVD player. Pleae help!

OK - let's go through it a step at a time...
You have created a button by dragging out a rectangle in the menu editor. Click on the button once and look in the property inspector under the 'Style' tab. In the middle, look for the Shape drop down and navigate through to whatever shape you want to use. For simplicity, select something like 'L shape highlight', which will create an underline and left hand upstand for whatever is on the background image.
Now click on the 'colours' tab and select 'simple' at the top. You should then see three sliders, one for 'Normal' one for 'Selected' and one for 'Activated' button states.
Leave the 'Normal' one set to 0 opacity (regardless of the colour in the box). This means that nothing will show up at all when the button is not selected or activated - so just whatever is on the background at that point will show through.
Move the 'Selected' slider to full opacity (15) and set the colour to what you want. It defaults to yellow, and I like to change that to red, personally. With this in place the button will then get a red underline when it is selected in your DVD player. You can check this by using the middle of the three buttons underneath the menu editor window that allow you to show the different button states... make sure that you haev a button clicked on in the editor first (i.e. has drag handles around it).
Now change the colour in the 'Activated' slider to be yellow, and set the opacity to 15 as well. This will make the button highlight change colour momentarily when a user activates it. If the selected colour is red, using something diferent (like yellow) allows you to see that the button has indeed been activated. Use the three buttons under the menu editor now and switch between the different states - you should see the highlight appear and change colour.
Now, repeat the process for every button that you have got on the menu, then go into the 'settings' drop down box and click on the text that reads 'Auto Assign Buttons now' (if it isn't already assigning the navigation). If you click on a button and then go into the 'Advanced' tab of the property inspector you should see which button the user will go to if they press a directional arrow on their remote control.
Finally, click on the background, away from any shapes, buttons or drop zones, or click on the menu icon in the outline view, then check the property inspector again - it should now show the options for the menu. Click on the 'Menu' tab and check the setting for the default button. It should say button 1 (if you didn't name the buttons as you went along), or whatever the name is of the first button that you created. This button will be the one highlighted in the 'selected' state when the menu plays.
That should be it.
If you do decide to create an overlay layer, all you do is create the background image in Photoshop (or whatever) and save it as a .pict file (don't use JPEG). You then add a layer and on that draw only the highlight shapes that you want - in our example you would simply draw a few lines to appear under the text on the background layer.
Hide the background so that just the highlight lines are showing and then convert this to grayscale. Export that as a .pict image as well, then import both to DVDSP. Set one as the menu background, one as the overlay and then proceed as above but don't use a shape... draw out the rectangles around the button text and you should see the highlight shapes appear. Set the colours for the states as before.
Lastly, don't forget to assign the button targets no matter which method you choose!

Similar Messages

  • Help with creating highlighted buttons in DVDSP 3

    OK, I'm going nuts. I set up a "template" in iDVD using the "Brushed Metal Two" form. It has "arrow buttons" that "highlight" when selected in whatever color I set. They're a shadowed grey metal, like the background, when not selected.
    When I open this "template" in DVD Studio Pro 3.0, they arrows show up, but they lose their highlighting ability. I've tinkered with the settings in DVDSP, Button attributes, and have no even gone so far as to try designing my own buttons in Photoshop. Nothing is working. re: Photoshop, I don't know the program very well. Layers and all that is basically another language to me.
    In the end, I don't understand why everything I do in iDVD gets imported into DVDSP EXCEPT for the highlight fuction for the buttons. The "button" shows up, but it loses the ability to be highlighted.
    Anyone have any thoughts?
    Chip Tredo - Dallas

    iDVD templates will not import properly into DVD SP depending on the version of iDVD, DVD SP 3 will be further back than this
    http://discussions.apple.com/thread.jspa?messageID=4650585&#4650585
    DVD SP 4 can do iDVD before iDVD 5, do not recall the ones for DVD SP 3
    If you go to the menus section here
    http://dvdstepbystep.com/
    There is some info on making buttons including using Photoshop look at
    http://dvdstepbystep.com/qm.php
    http://dvdstepbystep.com/newmap.php
    http://dvdstepbystep.com/motion.php
    http://dvdstepbystep.com/useelements.php (using elements from DVD SP, you can also access iDVD elements the same way)
    http://dvdstepbystep.com/buttons07.php
    http://dvdstepbystep.com/buttons07m.php

  • How can I set the highlighted button according to the last chapter viewed?

    I have a main menu with four buttons, each one of which takes me to a different chapter of track 1. When I press the MENU button on the remote and return to the main menu, I would like for the highlighted button to be the one corresponding to the last chapter viewed. How can I do this?
    Page 247 of the DVDSP manual says the following:
    Highlight Condition: Provides an alternative method to the Default Button setting for determining which button to highlight. When Highlight Condition is set to Default, the Default Button setting supplies the button highlight setting. When Highlight Condition is set to one of its stream settings (audio, subtitle, camera angle), the number of the stream last played determines the button to highlight. This setting can be overridden by any element that jumps to this menu, based on its jump setting.
    I know that SPRM 7 contains the value of the current chapter, so when returning to the main menu I would like to use SPRM 7 to set the Highlight Condition, but I don't see a way to do that, since the only options for Highlight Condition are audio stream, subtitle stream, and camera angle.

    Ah. Pre-scripts.
    I would do this by tracking the menu, certainly, but I'd do that by using a set of scripts not as prescripts. So, if your main menu is the start up item for the disc, create a script that reads:
    mov GPRM0, 1
    Jump main menu
    and set that as the start up item instead. Now create a second script:
    mov GPRM0, 2
    Jump Menu2
    and use both of these scripts on any button that goes to a menu. For example, on the Main Menu you'll have a button that links to menu2... point that button to script 2 instead of the menu itself. Similarly, on the chapter menu if you've got a button that takes you back to the main menu, point that button to the first script.
    For your menu call script you can now do this:
    mov GPRM1, SPRM8
    div GPRM1, 1024
    Jump Main menu \[GPRM1\] if (GPRM0 = 1)
    Jump Menu2 \[GPRM1\] if (GPRM0 = 2)
    This could also be the end jump script for both tracks, too.
    Now, Main menu will have three buttons, one for track 1, one for track 2 and one to go to the second script. Track 1 menu call and end jump goes to the last script, track 2 does the same. On the chapter select menu you point each button to the relevant chapter in track 1 and let the scripts do their job whenever a menu call is made or the track ends. The script will see you were on Menu2 and send you there, and SPRM8 will get you back to the button you last selected.
    If, instead of this, you want to go to the button that represents the last chapter played on the chapter menu, and not the last button pressed, but still be able to get to the last button on the main menu then the script changes a bit:
    Goto 5 if (GPRM0 = 2)
    mov GPRM1, SPRM8
    div GPRM1, 1024
    Jump Main menu \[GPRM1\]
    mov GPRM1, SPRM7
    Jump Menu2 \[GPRM1\]
    This sends you to the button relevant to the last chapter played if you came from the chapter menu, by jumping through the script to the bit that deals with Menu2, else it will work out the last button selected (and we assume this must have been on the Main menu because GPRM0 !=2 in that case), and send you to the main menu with that button highlighted.
    If you've got any more scripts than that running, you've got too many... and get rid of the pre-scripts - they are more trouble than not, and don't work if you are using GPRM based button jumps anyway.

  • Help making a circle simplebutton highlight & button...(Snapshots provided)

    Hello, I've searched the forums regarding buttons and circles, but seems that I'm still having trouble understanding.
    I've noticed DVDSP4 is filled with more rectangular/square buttons, I have been using them in the past. This time, I'm working with circle buttons on a menu screen.
    Here's a snapshot of what I'm working with today:
    The circle button that came with DVDSP is called "Circle Highlight" and is the only one I can find. However, it's really pixealated:
    /___sbsstatic___/migration-images/464/4647754-2.jpg
    Is there a way I can recreate this button without it being pixelated? Does it need to be in exact dimensions with each circle in order for it to not be pixelated?
    I'm a fan of the "simplebutton" that DVDSP provides, I currently have my settings set to this:
    /___sbsstatic___/migration-images/464/4647754-3.jpg
    The above image is when it is activated. I would like to basically make a "simplebutton" button and highlight that not a square or rectangle, but a circle. I would like to know the means of achieving that.
    Thanks so much for your time! Your help is greatly appreciated.
    iMac G5   Mac OS X (10.4.7)  

    When doing something like this, I usually make a layered menu in photoshop. I don't know if that's the best way to do it but it works...
    You need to make a photoshop document with a few layers for each button - one layer for the inactive state, one for the active state and one for the selected state. All your inactive buttons can be flattened to one background layer because they stay on the screen all the time. So create your menu background first and flatten it into one layer.
    Then, create 2 new layers for each button. One layer will be show how the button will look when selected. Perhaps you can put a glow behind your circle when the user navigates to it. The second layer will be how the button will look when it is activated. Maybe you color the circle in to indicate it was selected. Essentially, your photoshop doc layer should look something like this...
    button 4 active
    button 4 selected
    button 3 active
    button 3 selected
    button 2 active
    button 2 selected
    button 1 active
    button 1 selected
    menu background
    Once you have the .psd created, import it into DVDSP, preserving the layers (do not flatten on import). Then select 'create new layered menu' (not create menu). Drop the document into the menu and all your layers will show up. Go to the menu inspector and turn off all layers except the background layer.
    Next, create your 4 standard buttons like you showed in your picture - you can use the square buttons. Click on your first button, go to the inspector and you can select which layers will be visible there. So check the 'button 1 selected' box in the second column and the 'button 1 active' box in the third column. By checking these boxes you are turning that layer on when the user either selects or activates the button. Do this for all 4 buttons.
    By creating the menu this way, you can still use the square buttons that DVDSP provide. When the user selects the button, it will only show what is on the layer that you selected in the inspector, which is the glow circle or colored circle you created in photoshop. Everything else is on different layers so if there is overlap with the next button you won't see that button's highlight because it is on another layer.
    I'm not sure if this is the best way to do it but this is how I would do it. I haven't had any trouble doing it this way in the past.

  • Menu Buttons and remote buttons in DVDSP 4.2.1

    Hi
    Sorry, this is the first real DVDSP project for me that involves menus and chapters. I used template from the program. I deleted the 3 bottom buttons and added text in a different place for play and scene menu. I then drew a button box around the text to make the text a button. Got all the navigation set. However there no highlight on the preview so you don't know which button your pushing. I burnt a DVD to test everything.
    I have COD's FCS tutorials but the DVDSP isn't giving me what I need.
    So what did I do wrong? My scene selection menu is all text buttons, no graphics at all.
    Also when playing the DVD on my TV, the menu on my remote didn't work. I had to push the title button on the remote. Am I supposed to map the remote buttons as well.
    Thanks for any help. Be nice to find a video tutorial with basics like scene selection and laying out an highlighting buttons. I"m totally lost here! ;-(
    Allen

    Thanks.. I know it use to be there but could not find it in the new version.. will test it out...
    I've put a snap shot of the project at :
    http://gallery.mac.com/herstik#100124
    Can DVSP4 also allow me no next jump to menus???
    I could only ever set it up to next jump through the movies... for a total of 99 tracks...
    After that I need to make menus into movie tracks.. but these are not navigable...
    Cheers
    Thanks for the help...

  • Can You Change the Highlighted Button in the Find Font Palette?

    I have several hundred spreads that I converted from Quark to InDesign CC and a few fonts are missing, so I need to replace them. I can use the "Find/Replace" window to take care of most of them using the "find format" function, but one doesn't show up as a choice, so I have to change it using the Find Font palette. I select the missing font name and then select the replacement. Then, if I hit the "enter" button on the keyboard, the palette closes because the highlighted button is the "Done" button. Is there a way to change the highlighted button to the "Change All" one?
    Thanks,
    Lloyd

    John,
    Thanks for the reply. I tried using the tab key and although it does change the highlighted button, you can't just press "enter" to select it. I also tried ALT+A (option+A) and it did nothing. I should have mentioned that I'm using a Mac.
    Lloyd

  • Highlight button in preview is not working...

    Hi, so this morning I did my software update for the OS X Yosemite, and when I took a screenshot of a picture, and I wanted to add text but the 'highlight' button is not working, please help! I'm on my macbook pro.

    Hi coralie137,
    I apologize, I'm a bit unclear on the exact situation you are describing. If you are talking about annotating images/screenshots in the Preview application in Yosemite, you may find the information and steps outlined in the following article helpful:
    Preview (Yosemite): Annotate an image
    Regards,
    - Brenden

  • Highlight button (in the Labview toolbar) disappears in one of my VI

    Hi,
               It is stupid but the highlight button (in the Labview toolbar) disappears in one of my VI and I don't know how to get it back.
    Do you know how?
    Thank you
    Attachments:
    highlight button.jpg ‏354 KB

    I'm not on a LabVIEW PC right now to verify my answer.  But I think it is either you have a re-entrant VI, or you have debugging disabled on that VI.  I'm leaning towards the latter.

  • Buttons for DVDSP

    I am not a motion Pro. I have Motion 2.0 and DVDSP 4.0. I have a Template I have done in Motion 2.0 and want use it in DVDSP 4.o. how do I make the text that I added in Motion be a button in DVDSP.
    In other words I have about 4 lines of text that "zoom in" that was done in Motion. I want these to be active buttons on a menu in DVDSP.
    Not sure if this is DVDSP question or Motion Question so I post both places. Sorry.

    Take a look here
    http://dvdstepbystep.com/motion.php
    It is a fade in, but same concept. You would need to make the final button text an overlay.
    (Also posted this in DVD SP froum, did not know wher eyou would look first )

  • Highlight buttons in scene selection

    Hi guys-
    I'm fairly new to DVDSP and had a question about highlighting. For a scene selection I'm using, I selected a template and chose to use that. When I went to simulate, I found that there were no highlights on each scene and I couldn't see where I was navigating to. When I select a shape to use, it erases the thumbnail. Any thoughts on how to easily create a highlight around the thumbnail and/or the text on the button? Thanks!
    -Jack

    I totally agree with everyone here about the sound problem! I called yesterday and was told "no one else has said there is a problem!" I should check the forums! I paid for the policy on this machine and I expect to be helped. Is Apple going to become another Windows? The reason I use their products is because they use Americans to respond to our problems and they fix things quickly!
    I have been making DVDs for 2 years and not until IDVD 6 have I had a problem. I too have burned the projects several times and NO SOUND!
    The "person" at the "support" line was condesending and acted like I had the problem! Asked stupid questions like "are you using the right disk to burn it, duh! How do I unistall and go back to IDVD 5?
    Wake up Apple and fix this problem NOW!
    imac G5 Mac OS X (10.4.5)
    imac G5   Mac OS X (10.4.5)  

  • Buttons in DVDSP

    Hello,
    So this is my very first post. How exciting! So my question is, I used motion to create a menu with some motion. The background is something i created in FCP and I borught it into motion to add the titles and buttons. I created an overlay layer and exported it as TIFF. I brought the motion FILE into DVDSP and I created buttons, but for some reason when I simulate it. A black box appears along with the highlighted color. Does anyone have any ideas.
    Thanks,
    Hak
    G5 dual 1.5GHZ   Mac OS X (10.4.7)  

    Wlecome to the boards, some things to look at
    http://dvdstepbystep.com/motion.php
    http://dvdstepbystep.com/useelements.php
    http://dvdstepbystep.com/buttons07.php

  • Press Play on highlighted Button=No Action

    Here is the situation: Menu is created. Button is created and linked to One track.
    When simulated and when tested on a standalone DVD player, even when the button is highlighted...PRESSING PLAY does not trigger anything. Instead, I have to press ENTER On controller.
    Some people just like pressing Play on Menu.. How does DVDSP deal with this issue? THanks.
    I have simple needs! Anyone know to fix this or what settings to adjust?
    -M

    Thanks for the replies. I did search for topic and didn't find it under my wording. But thanks for suggesting i'm lazy (jk)
    It's weird: I swore i've played dvds by pressing play at menu. With your help, i tested it out and you're correct. Thanks for the answer!
    -M

  • NEED HELP   Highlighting Buttons  (using an overlay)

    I am using DVD Studio version 4.0.2. I'm working on a menu and I have 2 buttons I need. A play movie and chapters button. How do you make these buttons highlighted when you simulate the menu? I know the tutorial tells you to import the "pre-made" overlay....but how do you make that overlay? Please help. Thank you very much
    Jake

    Hi Jacob
    Welcome to forum.
    You can make the overlay in Photoshop. Make whatever you want your overlay to be- lets say a box around your text- as a black shape on a white bg. Flatten your image, save it, then import into DVDSP. Drag it onto your menu but don't release the mouse until the drop down menu appears - drop it over 'choose overlay'. You wont see anything yet, don't worry - you need to draw in a button onto the menu that completely surrounds your overlay shape. Now the overlay shape can be highlighted and activated - the manual covers this in much more detail and is pretty straight forward.
    Hope that helps
    Cheers
    B

  • Highlighting button and text when scrolled over

    Hello,
    I have a menu that I wouldlike the four buttons to be highlighted when scrolled over wiht the navigator. I a way that only one shall be highlighted then you press down and the next will become highlighted, leaving the other one with no highlight. Any help?

    In this case you would need to use a highlight layer created in an image app like Photoshop. The background image for the menu would not contain any text, just a shape (or whatever) to indicate to the viewer there is a button there. The overlay would then contain the text to appear within the button area.
    You would create this in gray scale, and use the colour mapping tools within DVDSP to allocate the desired colours for the selected and activated states.
    In this way, only the background area will show when the button is not selected (i.e. is in the 'normal' state), but clicking on (or mousing over) the buttons will reveal the text in the highlight layer.

  • Highlighted button Disappearing at the end of loop?

    Hey guys,
    I have a simple menu with a few buttons and a short clip in a drop zone and a song in the background. All of this takes a minute to reach the end and once it reaches the end it loops but after the loop the highlight is gone and the buttons wont work ( on a DVD player).
    Any suggestions will be appreciated.
    Cheers,
    Alex

    The main problem is
    var fileList = inputFolder.getFiles();
    You are getting a list of all files and folders that exist in that folder, they could be text files etc.
    It is better to specify the file types IE:
    var fileList = inputFolder.getFiles(/\.(jpg|tif||psd|)$/i);
    As this will only get a list of files that are jpg, tif or psd

Maybe you are looking for

  • Video file won't update

    I keep having issues with these darn iPods! Ok well, my problem this time is this: I just finished converting a file from to mp4. I made sure my computer had the codec and everything first, and then when I finished converting it to MP4, I tried to ad

  • Webservices with xmlbeans fails during deploy.

    Hi there, I have created a webservices from an existing wsdl that uses xmlbeans. The xmlbeans are on the weblogic classpath, because they are used by several components, including the webservices I generated. When I try to deploy the webservice I get

  • HT201342 My husbands icloud took over my iPhone

    I plugged my iphone 4 into my MacBook Pro to sync - nothing new - but my icloud disappeared and my husband's icloud took over.  My icloud is no long present in my mail accounts on my MacBook Pro or on  my iphone.  Can't we have two iclouds on the Mac

  • 11.2.0.3   ------ 11.2.0.4   Windows 2008 R2  64-bit   HELP

    11.2.0.3 to 11.2.0.4 Need Help!  I downloaded the 11.2.0.4 software and unzipped it and installed it in another directory (Out of place upgrade) but the Installation SW creates a new ORACLE_HOME to include a Shortcut "dbhome_2", services, etc   I tho

  • Date Format in PeopleSoft Query Expressions

    Hello, I have devloped a query where one of the field has date field. The format that's showing is 'MM/DD/YYYY'. We want the format in 'MM-DD-YYYY'. I tried to create a expression using to_char(A.fieldname,'MM-DD-YYYY'). But its not working. Is there