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.

Similar Messages

  • 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

  • IMovie 11 - How to add circle to highlight player in freeze frame?

    Creating sports highlight video for my son. How do I add a circle to highlight him in a freeze frame? Any help is appreciated. New to Mac and imovie 11.

    John Cogdell wrote:
    … But wasn't sure if you were online, so jumped in for you.…
    I was, but busy 'evangelizing' some poor soul at the FCPX board …
    Pizza? … nah, today, son#1 needs some healthy food (broccoli, huuuuu), …
    enjoy your late-nite-dinner!

  • 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 Install USB of os x 10.4.6. for my Macbook 1.8ghz

    Hi,
    I need help making the USB install of os Tiger.
    The drive is having trouble reading the install disc I own so I am trying to make a USB install of it.
    I wantto install from the usb not install to it to be clear.
    Things I have!
    X1 8gig sandisk flash drive
    1 Macbook white 1.8 ghz Intel
    1 Pc with Macdrive 7
    1 Install disc that seems to have trouble being read in the drive > few marks on the disc and the mac DVD drive make lots of noise reading it but
    It will go to Disk utilities.
    Seems to be a bug in Tiger and restore doesn’t seem to work as in I can’t drag and drop a source to the restore the DVD to the flash drive.
    I already tried only 1 time to copy the DVD to the formatted flash drive using Macdrive and it read it as a bootable drive but the apple simple came up
    And then I got a the error (Can’t find driver for this platform error APCH or something like that.
    I have a torrent download of OS x 10.4.6 as well just in case some files are corrupted > I own the disk so it’s not illegal.
    I am new to mac but long time user of PC.

    Ok ..you need another Mac to make this work!
    you just use another mac even a old one like g4 to make a restore to a flash drive that you have formatted and verified.
    Bye
    Sam

  • 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

  • I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones.

    I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones. It currently looks fine on desktops and androids. I am using wordpress with a responsive theme (Canvas). I will need you to document The url is http://adamhtc.org.s183459.gridserver.com.

    Thanks George, interesting thought.  I looked on Adobe's site and they "advertise" fillable forms for the iPhone and Android markets, but on the Windows Phone tab, that is mysteriously missing.  lol    Maybe it will come later?   Meanwhile, I'll google to see if there are any PDF viewers that can handle it now.   Thanks for the reply.  :-)

  • Help making a logon page

    I need help making a simple logon page in Dreamweaver MX. I
    have tried Visual Basic. and several other methods to no avail. If
    someone could help me it would be greatly appreciated
    Ron Hansen

    Hi Ron
    The proceedure is pretty much the same in
    PHP/Coldfusion/JSP/ASP.
    There is a very easy to follow example in the Dreamweaver
    Help File.
    Just go to Help-->Developing Applications Rapidly -->
    Building pages that restrict access to your site (ColdFusion, ASP,
    JSP, PHP) --> Building a login page
    I don't think it can get much easier. But remember that you
    will need to have a database table of user details in place to
    complete the process.
    Good luck.

  • Add a help bubble at Home, Next & Previous buttons

    Hi,
    Can we add balloon help on 'Home', 'Next' and 'Previous' buttons?
    Thanks in advance.

    So are you showing only one record at a time? If so, this can be very simple.
    1. Create a variable to hold the next record you want to display. Create another for the previous record (you already have the current record).
    2. Create a custom procedure and set the value of the next and previous record ID's using an SQL query of your choice.
    3. On the NEXT button, set it to Submit and set the target page to be the same page. Set the value of the current record ID to be that of the next record ID. When the page refreshes, it should grab the appropriate record.
    4. Following that idea, on the PREVIOUS button, set it also to Submit to the same target (the page you are on now). Set the value of the current record ID to be that of the previous record ID.
    Try that and see how it goes.

  • Need Help making a Screencast for IPHONE

    Hello there
    I need some serious help making a screencast for a client - for it's Iphone Apps -
    something similare to this
    http://www.newsluxe.com/chaumet-et-iphone.php
    but more sexy, with a animated background and a different type of cursor.
    Anyideas ?
    I really don't know where to start - I found leads however :
    Camtasia Studio , screenflow, ,
    Maybe you could help me filling the gaps.
    Thanks for your help !

    does anyone know how apple made these forums?
    I think they use Jive:
    http://www.jivesoftware.com/products/forums/
    The Apple way for users to add photos is the .Mac web gallery:
    http://www.apple.com/ilife/iphoto/#webgallery

  • My grandma is a new apple user and she needs help making an apple account.

    my grandma is a new apple user and she needs help making an apple account.

    She should call Apple support or visit the Genius Bar at an Apple store (make an appointment first at http://apple.com/retail). They will walk her through the process.

  • 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.

  • Help making a clock

    Hey,
    I was hoping to get some help making a clock update for me, but I don't want just to show the actual date, I know how to do that. What I want is to be able to set a time, and then the clock start running from then. For instance, after I enter Jan 3rd, 2005 at 3:43 as my time and date, I want the clock to start from there and update every second. Does that make sense?
    Could someone help me out where to look to get this to happen? Thanks!

    I think the OP wants to be able to set a time OTHER
    than the current time. He doesn't want to wait
    untill the time you entered to have the clock tick,
    he wants to have it tick immediately from the "fake"
    time that you've entered.
    At least that's how I understood him. The offset is
    the difference between the real time and the fake
    time entered by the user.
    If he just wants to display the current time, but not
    stat doing that untill some point in the future then
    yeah TimerTask is the simplest way to do it, but I
    don' think that's what he's trying to do.thanks for the replies guys. I appreciate it. Sorry if I was a bit unclear. Norweed was right in saying that I want to set the time and start updating immediately, not wait until the time reaches my entered time and then count. Sorry for the confusion.
    I was thinking that a offset would work, thanks for recommending that. I'm wondering if the time will get off after a while, I need this program to run probably arounnd 2-3 hours. Hopefully it won't drift very much over that time.
    Thanks all for the recommendations and I will check all that out.

  • Help Making a Ringtone!

    Hi,
    I can't seem to make any ringtones for more than the first 15 seconds of a song in garageband. I know the songs I am trying to use are unprotected because they are recordings of me playing jazz and we didn't protect them, they are in mp3 format. But I can't get mp3 mp4a or AAc format to play more than the first 15 secs. I tried tuneclone, mp3 converter and everything. All i want to do is create a ringtone of a song. please help.

    harriettfromjacksonville wrote:
    Purchased a ringtone and need help making it my ringtone for my new Iphone.  Help.
    You have to create the ringtone.
    There are many free ways to do this.  Google will find them.

  • I need help importing navigation bars and rollover buttons from fireworks?

    I need help importing navigation bars and rollover buttons from fireworks, drop down menus and rollover states won't work!
    Thanks

    In my experience, the code created by graphics apps is less than satisfactory. And image based menus are very awkward for several reasons. 
    #1 If you decide to change your menu later, you must go back to your graphics app and re-craft the whole thing.  After 2-3 times of this, it gets old in a hurry.
    #2 Image based menus cannot be "seen" by search engines, screen readers and language translators.
    #3 CSS styled text menus are better for your site's visibility, accessibility and they are a snap to edit in Dreamweaver.
    That said, if you're still married to image based menus, use Fireworks to create images only. Use Dreamweaver's Image Rollover Behaviors to create your rollover scripts.
    Nancy O.

Maybe you are looking for

  • Compatability:  CR 2008, VS 2005 and SQL Server 2008 on WINDOWS 7

    Crystal Reports 2008,  Visual Studio 2005 and SQL Server 2008 all play nice together on a VISTA or XP box.  But we cannot get a connection when we switch the OS to WIN 7.   I tried to get a connection via the report designer.  Is this combination of

  • How to use dll's(Functions) in java ?

    Hi I want to use the windows : shell32.dll. The declaration is as follows: Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( _      ByVal hwnd As Long, _      ByVal lpOperation As String, _      ByVal lpFile As String, _      By

  • Problem Updating to Adobe Reader 9.5.5

    Hello, When I try to update to Reader 9.5.5 on my MacBook Pro OS 10.8.4 the Reader prompts me for my administrator password to "make changes". I enter the password and it is rejected. I know for a fact that 1) it is the correct password (I use it to

  • Why we need CRS in Oracle10g RAC

    When i am having third party cluster solution like Veritas(SFRAC for Oracle), why its not possible to configure Oracle10g RAC with Veritas without CRS ????? Its possible in Oracle9i but why not in Oracle10g ????

  • Moving iPhoto pictures to guest account's iPhoto Library.

    Hi, i use a 2006 mac mini, and I was wondering how can I move or Draft all of my iphoto pictures onto my 2nd account's iPhoto library on my mac mini? Because i have a "guest" account so to speak, and was just wondering if there's anyway i can do it.