Picture buttons. How to change?

Hi all. I have a menu of two buttons.
I want tro create the following actions:
when the button is active, it should be a text in a frame
when the button is not active, it shoul be only the text in a different color.
Any suggestion will be helpful.
Example:
[url=http://www.freeimagehosting.net/vi99r][img]http://www.freeimagehosting.net/t/vi99r.jpg[/img][/url]

The "frame," within some limitations, and the Text color can be changed, via the Sub-picture Highlight.
Now, Sub-picture Highlights have major limitations per the DVD-specs. They can be only 2-bit color - either ON, or OFF, can be one of three colors (Color Sets adjusted in Encore, via the Button Layer Set number/name, and can also have Transparency. Especially that 2-bit aspect, can cause issues. To get around that, one can create a dupe Menu for each Button, and use a graphic, instead of the traditional Sub-picture Highlight. This is called a "Rollover Effect," and there are many discussions, that show how to create that.
Good luck,
Hunt

Similar Messages

  • Reset Button - How to change the defaults?

    Is there any way to change the Lightroom defaults for the Reset Button?
    I already know about Custom Presets. I just think it would be faster if the defaults for the Reset Button could be changed.

    Unless we are talking about a different reset button the reset button should
    return the picture to the way it was shot by the camera with not editing of
    any kind. If a user could go in and change this so that it reset the image
    to something other than the original image as it was shot by the camera then
    it would not be a reset button any longer. It would be a quick apply preset
    button and NOT what it was designed and placed in the program for.
    If you want one button access to set defaults of your choice that is called
    a preset. That is what they are for.
    Robert

  • Multiple picture-buttons - How to stop the slide

    Hi,
    my problem:
    A slide with a world map, some buttons as target-markers. If you click at one of these dots, a button with some information pops up (its all about visibility). A single click within this button close itself. It is possible to click any target so many time the user want to. It is also possible to open all text-buttons by hitting all the orange dots. Slide audio is 22 seconds long, so is the slide duration. How can i stop the slide up to zthe moment, the user hits the bottom-left navigation button (perpetualButton_AS3)?
    I fear, the solution is quite simple, i just can't figure it out. Any help is very welcome, time is running out ... delivery of a teaser in less than 4 hours and still some video work to do.
    Regards
    Marc
    btw: eLearning Suite 2.5 is running at this computer

    Not sure if this would be what you want but the Event Handler Widget would allow you to either display timed Success captions for a given number of seconds or execute advanced actions to SHOW or HIDE captions when users click the dots.  You can set preferences in the widget to Reset Success/Fail Criteria After Action to enable users to click on an object as many times as they want to repeat the action.  Set the Pausing preferences to permanently pause the slide until the user clicks another button to proceed to the next slide.
    If you want to try it out, download a free trial widget here.

  • Animated Buttons: How to Change Clip?

    My animated buttons always play the first 15 seconds of the chapter. I usually want to start the clip a few seconds later. How?

    Select the chapter marker of the chapter you are working with.    Move the CTI to the point you want the button animation to start.  Right click, "Set Poster Frame."  If there is already a poster frame separate from the chapter marker, you can drag that.
    Duration etc is interesting.  I think the duration of the menu is what is set for the buttons also.  And a loop point will also be applied to the button, it appears from the poster frame.

  • How to change picture message priority for selecting pictures?

    I recently was making a picture message for a friend, and when I selected the add attachment icon it brings up the screen for you to select from your "gallery" or your "files"
    Then you select which one and hit always select this option or only once.
    I accidentally hit the files section and hit always select that option and honestly I don't want to have to go through all of my files every time to find my picture and would rather have it be gallery every time.
    Does anyone know how to change this?
    Thank you.
    It is a droid razr maxx hd.

    Settings > Apps >scroll over to the All tab > scroll down to files and select it. Touch the clear defaults button.

  • How to change keyword in many pictures at the same time?

    I gave a big series of pictures the wrong keywords. Now, I can't figure out how to change them (besides one by one...).
    If I select e.g. 10 pictures in Library-mode, how to change keywords on them all at the same time?

    Make sure you are in Grid View, primary monitor (if you have two), select 10 pictures and type (or delete) the keywords in the Keywording panel in the left upper corner.
    Make sure the Metadata->Show Metadata for Target Photo Only is unchecked in the menus. Otherwise your edits will only apply to the primary selected (most selected) image.

  • How to change button colors in a loop?

    I am working on a task that should imitate an elevator. I have two vertical
    rows of round buttons "Up" and "Down" When a circle is selected randomly by
    the program, the circle becomes yellow and the elevator moves to that
    button.
    Here is what I did:
    1. created a class Circle where I save buttons' parameters
    2. saved Circle objects in an array
    3. drew the buttons depending on their parameters
    4. generated a random number, matched it with an array index and assigned
    the object color to yellow.
    Everything is fine except that I can't figure out how to change colors of my
    buttons in a loop.
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class Elevator3 extends JPanel
    private int n = 40;
    private int width = 200;
    private int floors = 10;
    private int interval = 1000;
    private boolean selected = false;
    private Circle[] buttons = new Circle[2*(floors-1)];
    public Elevator3()
    build();
    JFrame frame = new JFrame("Elevator3");
    setBackground(Color.WHITE);
    setFont(new Font("SansSerif", Font.PLAIN, Math.round(n/3)));
    frame.getContentPane().add(this);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(width, n*(floors+2) );
    frame.setVisible(true);
    public void build()
    Random r = new Random();
    int buttonPick;
    int timeUntilNextButton = r.nextInt(interval);
    for (int k =0; ; k++)
    if (timeUntilNextButton-- ==0)
    buttonPick = r.nextInt(2*(floors-1));
    //populate my buttons array here - how??
    timeUntilNextButton = r.nextInt(interval);
    //adding "Down" buttons
    for (int i=1, count=0; i < floors; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n*2, n*i, selected, Math.round(n/2));
    //build an array of "Up" circles
    for (int i=2, count=floors-1; i < floors+1; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n, n*i, selected, Math.round(n/2));
    public static void main(String[] args)
    new Elevator3();
    protected void paintComponent(Graphics g)
    super.paintComponent(g);
    //draw buttons
    for (int i=0; i < buttons.length; i++)
    g.setColor(buttons.getColor());
    g.fillOval(buttons[i].getX(), buttons[i].getY(), buttons[i].getWidth(), buttons[i].getWidth());
    class Circle
    private int x;
    private int y;
    private Color c;
    private boolean pressed;
    private int width;
    public Circle(int xCoordinate, int yCoordinate, boolean selected, int diameter)
    x = xCoordinate;
    y = yCoordinate;
    pressed = selected;
    width = diameter;
    if (pressed)
    c = Color.YELLOW;
    else
    c = Color.LIGHT_GRAY;
    public Color getColor()
    return c;
    public int getX()
    return x;
    public int getY()
    return y;
    public int getWidth()
    return width;

    hi,
    am sorry, i couldn't make out what exactly the problem, but as ur subject line says...
    may be the code give below will help you to change button colors in a loop..
              for(int i = 0; i < button.length; i++){
                   int color1 = (int)(250*Math.random());
                   int color2 = (int)(250*Math.random());
                   int color3 = (int)(250*Math.random());
                   Color c = new Color(color1,color2,color3);
                   button[i] = new JButton("button name");
                   button.addActionListener(this);
                   //to check the r, g, b combination.
                   //System.out.println(c);
                   button[i].setBackground(c);
                   button[i].setForeground(Color.white);
    //adding into the panel
                   panel.add(button[i]);
    hope this would help you.

  • How to change the size of the titel of  a picture in a diashow

    please answer the question.
    how to change the size and the possition of the titel of  a picture in a diashow

    You need to select it.  Copy that selection to a new layer, and use Free Transform to resize it.
    http://www.youtube.com/watch?v=qWpAGmwhllQ
    http://www.youtube.com/watch?v=Bi4jJnYLkUA

  • How to change the size of a particular object in the picture?

    How to change the size of a particular object in the picture?

    You need to select it.  Copy that selection to a new layer, and use Free Transform to resize it.
    http://www.youtube.com/watch?v=qWpAGmwhllQ
    http://www.youtube.com/watch?v=Bi4jJnYLkUA

  • How to change the text of a button dynamically in module pool

    hi gurus,
    how to change the text of button dynamically

    Hi ,
    Declare a variable in TOP Include with your button name.
    Example : P_BUTTON(20) TYPE C.
    Place button with name P_BUTTON on you screen. Do not forget to mark it as "Output Field". [ Double click on button, Attributes --> Program tab --> tick "Output Field".
    In you PBO / PAI , whereever you want to change your text -
    Assign value to P_BUTTON.
    Example -
    iF COND1..
    P_BUTTON = 'EDIT'.
    ELSEIF COND2.
    P_BUTTON = 'DISPLAY'.
    ENDIF.
    Regards,
    Mohaiyuddin

  • How to change the picture frame size in Lightroom 5 Book

    I would like to control the actual picture frame size when making a Book in Lightroom 5. Or else know the sizes of the different picture frames provided by choosing the different page layouts. That way I can either change the picture frame dimensions to accomodate each photo or change the image size to fit in the offered picture frame. I find that using the software as is winds up cropping the images in unwanted ways. Modifying the picture frame would be my preferred alternative. Appreciate any ideas

    Hi again Tony,
                I have been using Adobe Photoshop 7, Photoshop Elements, Perfect Photo Suite, Photo Studio, etc., changing Image size, placing a picture on a page and then, do a simple last minute size adjustment by using the arrows to stretch or shrink it in place. Things would be a lot simpler if I could do the same thing with the cells in Lightroom 5. Cell pad adjustments do not fill the bill.
    I think we’ve pretty much concluded this exchange. Thanks again for your effort.
        david
    ay [email protected]
    Sent: Wednesday, March 12, 2014 11:27 PM
    To: dgbrow
    Subject: How to change the picture frame size in Lightroom 5 Book
    Re: How to change the picture frame size in Lightroom 5 Book
    created by Tony Jay <http://forums.adobe.com/people/Tony+Jay>  in Photoshop Lightroom - View the full discussion <http://forums.adobe.com/message/6205206#6205206

  • How to change the fields order by pushing the TAB button?

    Hello.
    I have 4 input fields on a screen that i have build.
    When i'm running the screen, I can move from one field to
    another by the TAB button.
    I need to set a different moving order that is performed by the TAB button.
    For example: the fields are 1,2,3,4. if I use the TAB button to move from one field to another- the order is 1->2->3->4.
    I want it to be 1->3->2->4.
    Is it possible??
    Thanks, Barak.

    Hi Barak Sahar,
    a) set the initial cursor at dynpro level
    b) set the cursor positions dynamically using codeSET CURSOR[/code]
    Here are the online help links I found:
    http://help.sap.com/saphelp_470/helpdata/EN/9f/dbac0b35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_470/helpdata/EN/9f/dba47e35c111d1829f0000e829fbfe/frameset.htm
    Go through below thread...
    How to change the sequence of fields accessed with the tab key on a dynpro;&#56907;
    Hope it will solve your problem
    <REMOVED BY MODERATOR>
    Thanks & Regards
    ilesh 24x7
    Edited by: Alvaro Tejada Galindo on Dec 25, 2007 9:13 AM

  • In "Previews" when adding text to a picture I can't change the font, even though a few days ago I could.  How do I fix this?

    In "Previews" when adding text to a picture I can't change the font, even though a few days ago I could.  How do I fix this?

    kgwrotethis wrote:
    10.6
    Use Software Update to update your os to 10.6.8 and anything else that needs to be updated.  After the installations go to /Library/Preferences - trash the com.apple.Preview.plist file.  Repair permissions, restart your computer and empty the trash.  Your Preview issue should now be resolved.

  • How to change color of a button for specific time interval in jsp

    How to change color of a button for specific time interval in jsp.
    Please help.
    Thanks in advance.

    This was driving me crazy, too--and the previous answers did not seem to work. I eventually found that if I click one of the data symbols in the graph in exactly the right spot (see below), it selects only the data symbols and not the line. I can tell this because the little selection dots will be around each data symbol, but no selection dots will be on the line between the data symbols - like the graphic in Yvan's answer. Then and only then will the color symbol in the tool bar show the color of the data symbol, instead of the color of the line. I believe that you then have to first click on the color swatch in the toolbar and then select your color (or choose Show Colors and select from the color tool). Just clicking a color in the crayon box, for example, did not seem to work unless I first clicked on the color swatch in the toolbar, then clicked Show Colors on that dropdown, and +only then+ clicked the crayon or whatever.
    _The right spot to click_ seems to be just above the exact center of the data symbol, at least for the diamond shape symbol that I prefer. Sometimes it takes several tries to hit the right spot. If I miss it, the whole line is selected, which is indicated by the little selection dots on the line, between the data symbols. When I click the right spot, those selection dots go away, leaving only the data symbols selected. Then I can change the color, as described above.
    I hope this works for you too.

  • How to make picture button in oracle forms?

    can any one tell me how to make a picture button in oracle form builder?
    please help?

    Hi,
    Only a icon can be pasted on the push button. We can not user jpg,,jpeg or gif for the picture only ico file can be used.
    go to properyt pallet,
    make iconic as yes
    give the path in icon filename --- C:\Program Files\Winamp\eMusic\eMusicClient
    where eMusicClient is -- icon file name without extension, dont use " " in path
    bye

  • How to change start picture

    Hi
    Just wonder is it possible to change the ABAP workbench picture? How to do it?
    Regards,
    Rayden

    Hi
    Change the logo in the right-hand side of the initial Log-on screen
    - To put your company logo in the right-hand side of the initial
    screen:
    Put your picture in the database with the transaction SMW0
    "Binary data" options, e.g. in ".GIF" format.
    Put a record with the picture name in the key "START_IMAGE" of
    the table SSM_CUST in the View maintenance transaction SM30.
    - You can adjust the picture to the window size automatically or
    center it in the right-hand side of the initial screen
    ("RESIZE_IMAGE" "YES" or "NO" in the table SSM_CUST).
    - You can deactivate the picture globally so that noone sees it
    with "HIDE_START_IMAGE" "YES" in the table SSM_CUST.
    Refer the links -
    SAPGUI Logon screen
    How to put Company Logo in a SAP R/3 Login Screen
    Infotext on logon-screen
    How to insert Logo in Easy Access screen?
    Photo on SAP Logon Screen
    See following link:
    http://www.sap-img.com/basis/changing-the-sapgui-logo-on-the-right-hand-side.htm
    See the link
    http://www.sap-img.com/bc052.htm
    Reward if useful
    Anji

Maybe you are looking for