Help with making buttons work within mc/shape tween

hi,
i've created a movie clip for a navigation link named
"Products". when you mouse over the "Products" mc, the movie clip
has a sub-navbar that tweens horizontally out of the movie clip.
when the subnav is done coming out and stops, i have buttons that
appear that i would like the user to be able to click on.
everything works out fine until i roll over the button the rollover
state doesn't work. i have a feeling it is because the button is
nested, but not sure.
i set up a simple example here:
http://kurtcom.com/examples/jeannettes_damn_navbar.html
let me know if you want me to email you the file as well,
thanks!

A single Path would just be an out line of your three shapes.  As you knew to create  the above using vectors requires three shape layers.  Shapes can only be filled  with a single color or pattern.  They also can be stroked and have layer styles added. Additional strokes may be need to highlight the green area like you show above..
With CS6 you can merge shape layers into a single shape layer your result would be a single color shape however the merged paths would be the outlining path you seem to want. you can save the path in the path palette when the merged shape is the active layer.
adding an empty layer and stroking the merged path,
Message was edited by: JJMack

Similar Messages

  • Upgrading Hard Drive need help with making it work.

    I have just begun copying my HD to a 120GB 2.5" SATA drive.
    I'm using Super Duper to copy it, and I understand it will be a bootable disk.
    Once it has completed copying, is there anything I need to do to make it the startup disk ?
    Do I make it the startup disk before I swap the hard drive out from within System Preferences ?
    Also, it is currently called Disk 2 - Will that become the name of my HD (currently obviously called Macintosh HD)
    If it is, can I then change the name ?
    Any help would be greatly appreciated
    Thanks

    SuperDuper will make it a bootable disk if that's the backup option you selected. Look at the SD feedback information. It tells you what it will do and will then show the steps checking off each one as they are completed.
    All you will need to do is remove the old drive and install the new one. It should be ready to go if you did everything correctly. This includes partitioning the new drive using the GUID partition scheme, setting the format type to Mac OS Extended (Journaled), and then Erasing the drive using the Zero Data option.
    Be sure to test the cloned drive before installing by booting the computer with it while it's in the external case.
    You can rename the drive anything you want.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Help with linking buttons to Scenes

    Hey,
    Rookie to Flash and AS3. Just needed some help with my buttons. Im making a flash program about pancakes (random I know). I have a "Mainmenu" scene and then a "Recipe" scene. I have a button on my mainmenu which takes me to the recipe page when I click it, the code behind the button is
    "stop();btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);function mouseDownHandler(event:MouseEvent):void {
    gotoAndStop(1, "Recipe");
    Then when I arrive at my recipe page I have a button which will take me back to my MainMenu, the code behind that button is:
    "stop();btn_home.addEventListener(MouseEvent.MOUSE_DOWN, mouse5DownHandler);function mouse5DownHandler(event:MouseEvent):void {
    gotoAndPlay(1, "MainMenu");
    So I run my program and the first button works and takes me to recipe page but the button to get to the main menu does nothing, click it and no response or anything
    Please help

    First, hopefully having all your code mushed onto the same line is a copy/paste error, otherwise it should look like...
    stop();
    btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void {
         gotoAndStop(1, "Recipe");
    If the intention is to click the buttons to make them work, then you should use CLICK instead of MOUSE_DOWN.  MOUSE_DOWN can be a persistent state whereas CLICK involves releasing it afterwards.
    As for the code to get you back home, where is it located on the timeline?  Are you getting any error messages when you try to use it?
    One thing you should learn to use is the trace() function.  It is useful for troubleshooting.  You can use it now to see if your second button is talking to the function at all...
    stop();
    btn_home.addEventListener(MouseEvent.CLICK, mouse5DownHandler);
    function mouse5DownHandler(event:MouseEvent):void {
         trace("the button works okay");
         gotoAndPlay(1, "MainMenu");
    If you don't get that message in the output panel, you'll know the button is not properly coded to work.
    Most folks here will recommend you get away from using scenes in a design that includes navigation--they have a history of being problematic.  Instead of using scenes, divide the one main timeline up into sections or use movieclips for the sections and manage their visibility... or do a bit of both.

  • Help with making JLabel visible for a few seconds only

    Hello guys,
    I need help with making a JLabel object visible for a few seconds only and disappear when a JButton has been clicked.
    Here is piece of code where I add mouse listener to the JButton object in my case is (jrbFigure1) and
    when is called sets icon and text to the JLabel jlbl object:
    jrbFigure1.addMouseListener(new MouseAdapter() {
    jrbFigure1.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    jlbl.setIcon(cross);
    jlbl.setText(wrong);
    This piece of code is in a switch statement, the statement is in a method.
    The JLabel jlbl object is added in a panel in the constructor of the class.
    I really hope someone could help me on this issue.
    I would like to thank you in advance for any help or advice given.

    Bobson wrote:
    Sorry for posting my issue twice, I thought, I posted it in a wrong forum:)It's OK. We'll ask the mods to delete the other thread.
    I want the label to appear for X seconds when then button is pressed and disappear after that.Then a Swing Timer is what you want to use.
    I need to do this in a number of cases from a switch statement because I several buttons.Better to have several ActionListeners, one for each button or each type of button, rather than one ActionListener with a large switch statement, a so-called switch-board listener. They're messy to debug and upgrade.
    I tried to use Swing Timer, but I cannot set it properly.Go through the Sun Swing tutorial on Swing Timers. It's all outlined for you there: [http://java.sun.com/docs/books/tutorial/uiswing/misc/timer.html]

  • Need help with a button

    Hello,
    I need help with a button. I created a button and set it up
    so that when you click and hold it, the button becomes lighter in
    color (I used Alpha). I want the button to stay this light color
    after i release the click. Right now it goes back to the normal
    color when I release the click. Can somone help we this?
    Thanks!

    rpofclt wrote:
    > Hello,
    >
    > I need help with a button. I created a button and set it
    up so that when you
    > click and hold it, the button becomes lighter in color
    (I used Alpha). I want
    > the button to stay this light color after i release the
    click. Right now it
    > goes back to the normal color when I release the click.
    Can somone help we
    > this?
    you can't use the button itself if you want to maintain the
    DOWN state after
    release as button automatically resets itself once the mouse
    lives the HIT zone.
    Use movie clip instead and on press simply send it to a frame
    where there
    is DOWN state like image.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • I need help with a button animation!

    Hi,
    I hope someone can help with a simple-looking problem which
    nonetheless has me stumped!
    I have a feeling that I've missed something obvious.
    I've created a movie clip to act as a button (I've called it
    "abs_button") and placed it on the stage.
    My main movie has one frame.
    Within the "abs_button" movie clip there are 5 layers.
    Labels, actions, default button state, rollover state and rollout
    state.
    Technically, default button state, rollover state and rollout
    state could be on the same layer as they don't overlap, but I've
    given each animation its own layer for clarity.
    FRAME 01.
    Default button state is one frame with a graphic of the
    button. Just a label at the start ("abs_up") and a "stop();" action
    at the end.
    FRAME 02 to 31.
    Rollover state is a 30 frame animation. Label at start
    ("abs_over"), "stop()"; action at the end.
    FRAME 32 to 62.
    Rollout state is a 30 frame animation. Label at start
    ("abs_out"), "stop()"; action at the end.
    All animations were achieved with tweens.
    My initial "abs_button" code:
    on (release) {
    getURL("targetPage.htm", "_self");
    on (rollOver) {
    gotoAndPlay("abs_button", "abs_over");
    on (rollOut) {
    gotoAndPlay("abs_button", "abs_out");
    As it stands, the animation jumps to frame 1 of "abs_out" on
    rollout.
    I need the "abs_over" animation to always play through to the
    end, as the "abs_out" is "abs_over" in reverse (i.e. image grows
    large on rollover and shrinks again on rollout.
    I've tried for 2 days to solve this, but I clearly need help.
    My experiments with variables simply didn't work.
    I would be grateful if someone could tell me where I'm going
    wrong!
    Thanks,
    Andy

    use this:
    on (rollOver) {
    gotoAndPlay("abs_over");
    Since the code is attached directly to the movieclip, you
    don't have to
    identify the clip. A gotoAndPlay() function takes a frame
    number or a
    frame label name as its argument, never the name of the clip
    that
    contains the frame number or name.
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412.243.9119

  • Need help with encore buttons - highlights

    Hi All
    I am seeking help with Encode CS5. I have a project working fine except that I dont have highlights for buttons, at least I think thats what its called. So when the mouse or remote control navigates up/down toa button it changes colour.
    In the properties of my button, the highlight option is greyed out.
    How do I apply highlights ?
    many thanks
    Chris Anderson

    Hi Bill
    Thanks for your reply.
    Here are 2 screen prints. One from encore the other from photoshop.
    First time I have inserted images, and they seem a little small on this message - if you have any problems reading I could email to you.
    I have highlighted the first button - which is called 'Highlights' - same issue with all the other buttons.
    Do you have to use photoshop to add highlighting? or can you do this in encore - i dont have much experience with photoshop.
    Not sure how to check 'Color Set' ? can you tell me how to get that for you - same for transparency for states? - I havent experienced them or changed them as I dont know how to
    Yes it was duplicated - have left a message not to reply
    Thanks again
    Chris

  • Making Buttons Work...?

    I am working on this project with some friends, and am fairly new at Java, so need some help with this. This is my GUI so far...
    import javax.swing.*;
    import javax.swing.text.*;
    import java.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Date;
    public class CustomerView
         public static void addComponentsToPane(Container pane)
              pane.setLayout(new GridBagLayout());
              GridBagConstraints c = new GridBagConstraints();
              c.fill = GridBagConstraints.HORIZONTAL;
              JLabel tCarModel = new JLabel("Car Model");
              // inserts (top, left, bottom, right)
              c.insets = new Insets(10,40,10,7);
              c.gridx = 0;
              c.gridy = 0;
              pane.add(tCarModel, c);
              // temporary string of Audi Models to go into combobox
              String[] carModels = {"A2", "A3", "A4"};
              JComboBox iCarModel = new JComboBox(carModels);
              c.insets = new Insets(10,10,10,60);
              c.gridx = 1;
              c.gridy = 0;
              pane.add(iCarModel, c);
              JLabel tFirstDayOfRental = new JLabel("First Day of Rental");
              c.insets = new Insets(10,10,10,7);
              c.gridx = 2;
              c.gridy = 0;
              pane.add(tFirstDayOfRental, c);
              JFormattedTextField iFirstDayOfRental = new JFormattedTextField(new SimpleDateFormat("dd/MM/yy"));
              iFirstDayOfRental.setValue(new Date());
              c.insets = new Insets(10,10,10,40);
              c.gridx = 3;
              c.gridy = 0;
              pane.add(iFirstDayOfRental, c);
              JLabel tCarType = new JLabel("Car Type");
              c.insets = new Insets(20,40,10,7);
              c.gridx = 0;
              c.gridy = 1;
              pane.add(tCarType, c);
              // temporary string of Car Types to go into combobox
              String[] carTypes = {"Audi"};
              JComboBox iCarType = new JComboBox(carTypes);
              c.insets = new Insets(20,10,10,60);
              c.gridx = 1;
              c.gridy = 1;
              pane.add(iCarType, c);
              JLabel tNumberOfDays = new JLabel("Number of Days");
              c.insets = new Insets(20,10,10,7);
              c.gridx = 2;
              c.gridy = 1;
              pane.add(tNumberOfDays, c);
              JTextField iNumberOfDays = new JTextField(4);
              c.insets = new Insets(20,10,10,40);
              c.gridx = 3;
              c.gridy = 1;
              pane.add(iNumberOfDays, c);
              JLabel tLicence = new JLabel("Licence");
              c.insets = new Insets(20,40,10,7);
              c.gridx = 0;
              c.gridy = 2;
              pane.add(tLicence, c);
              String[] licence = {"International", "UK Licence"};
              JList iLicence = new JList(licence);
              c.insets = new Insets(20,10,10,60);
              c.gridx = 1;
              c.gridy = 2;
              pane.add(iLicence, c);
              JLabel tTimeOfBooking = new JLabel("Time of Booking");
              c.insets = new Insets(20,10,10,7);
              c.gridx = 2;
              c.gridy = 2;
              pane.add(tTimeOfBooking, c);
              JFormattedTextField iTimeOfBooking = new JFormattedTextField(new SimpleDateFormat("dd/MM/yy:HH:mm"));
              iTimeOfBooking.setValue(new Date());
              c.insets = new Insets(20,10,10,40);
              c.gridx = 3;
              c.gridy = 2;
              pane.add(iTimeOfBooking, c);
              JButton iOK = new JButton("OK");
              c.insets = new Insets(30,10,20,10);
              c.gridwidth = 2;
              c.gridx = 0;
              c.gridy = 3;
              pane.add(iOK, c);
              JButton iCancel = new JButton("Cancel");
              c.insets = new Insets(30,10,20,10);
              c.gridwidth = 2;
              c.gridx = 2;
              c.gridy = 3;
              pane.add(iCancel, c);
         private static void createAndShowGUI()
              // create and set up the window
              JFrame tJFrame = new JFrame("Car Rental Information Systems");
              tJFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // set up the content pane
              addComponentsToPane(tJFrame.getContentPane());
              // display the window
            tJFrame.pack();
            tJFrame.setVisible(true);
         public static void main(String[] Args)
              // schedule a job for the event-dispatching thread
            // creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable()
                public void run()
                    createAndShowGUI();
    }I am trying to make the Cancel button close the frame... don't have a clue how to do it though. Any suggestions please?

    That was just in response to Michael_Dunn's comment... Again, why waste time with an unnecessary comment that doesn't add anything to solving the problem.
    Michael suggested that you need an ActionListener and System.exit();
    So your comment should have been "Thanks for the help", at least if you expect to get help in the future!

  • Help with making your own theme... (question)

    I have a Imovie HD 6.0.3, I wanted to make my own theme. The other themes are great, but i want to create my own, so I could show to make friends. I cant find anything related with making a new theme. PLEASE, PLEASE, PLEASE help me...

    Hi
    As Klaus1 writes - or taking the full step over to FinalCut.
    Here there is no themes in Express and a few title themes in FC Pro.
    BUT - When You master it - You can make nearly anything You like.
    Except themes - ready to be imported into iMovie - This require even more skill
    and very special tools eg to make the drop zones etc.
    Your - Using FCE/P and loving it Bengt W

  • Photoshop elements 6 help with making a clipping mask

    I have a button template (for a pinback) I put into elements. What I would like to do is make a country flag button. Right now the flag image is sitting ontop of the template. I would like to make a clipping mask (I think that's what's it's called) so that the image covers the entire part of the button that will be seen when it is printed. Here is a link to a button. This is what I am trying to do, but am not having any luck. I would a appreciate a step by step guide. I am using photoshop elements 6 on a mac OSX (ver. 10.5.8
    any help would be great
    http://www.petergreenberg.com/wp-content/uploads/2008/11/canadian_flag.jpg

    This is user to user tech support for folks having issues with Intel-based iMacs. This is not any kind of Adobe product support. If you need help with an Adobe product I suggest that you look for that help at the Adobe website.
    Dah•veed

  • PDF Documents with Functional Buttons - Works for IE and FireFox but not for Chrome and Safari

    To all,
    Good morning.  Our institution developed a PDF document with functional buttons for printing and e-mailing.  When the document is viewed via Internet Explorer and Firefox, the functional buttons work as expected.  However if the document is viewed via Chrome and Safari, the functional buttons do not work.  The workaround for those who are using Chrome and Safari, the PDF document needs to be saved to their local drive before the functional buttons work.
    Has anyone experienced this issue before?  If yes, what was your solution other than the workaround.
    Thanks.
    Babylon5

    Here's how to configure your browser to run Adobe Reader: http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html

  • Help With Radio Buttons -- URGENT!!

    Hi i am new to using UI compents in flash.
    Basically i havnt a clue where to start.
    Just some simple action script will help and be much
    appreciated if someone can give me it.
    Basically i have a question to ask which requires radio
    buttons to answer the question.
    I have a question and the answers are A, B, C, D.
    I want:
    A to equal 1
    B to equal 2
    C to equal 3
    D to equal 4
    E to equal 5
    Would someone be able to tell me how to set up the radio
    button so that the value of the radio button is stored into an
    array called SCORE.
    i dont need a tutor for arrays, i can do them, i just need
    help with the radio buttons so a reference to an array would be
    enough, eg how to store the answer from the radio button in an
    array.
    Thank you

    Place the radio buttons on the stage and set their parameters
    to what you need. Make sure that for each group of radio buttons
    you give them the same group name. Then you could use something
    like this:
    var listenerObject:Object = new Object();
    var answerArr:Array = new Array();
    listenerObject.click = function(eventObj:Object) {
    answerArr.push(eventObj.target.selectedData);
    trace(answerArr);
    radioGroup.addEventListener("click", listenerObject);
    radioGroup refers to the group name for the buttons.
    eventObj.target will refer to the actual radio button
    clicked.
    Tim

  • UWL - Help with Decision Buttons

    Hello SDNers,
    I'm customizing the UWL iView to show approval itens only, and their respective decision buttons.
    Everything looks ok, but when someone try to submit the decisions it shows the message:
    "reject wasn't correct"
    Where "reject" is the name I gave to the action.
    It also happens with the approval action.
    Below is the XML I've created.
    Does someone have a clue in what that message means, or what I've done wrong?
    Thanks in advance!!

    Hi There,
    Make sure that your decisionKeys are correct.  I have seen issues with this many times.  Log on to the backend system and call  SAP_WAPI_DECISION_READ or SWK_DECISION READ for a specific workitem  (You can get the details of the workitem id from the support information on the UWL - enable this and you can check this specific workitem)  The decision key is an internal value (typically a numeric value) corresponding to the selected decision used by the provider.
    You will need to ensure that you have x amount of decisions configured in the xml file, where x = the amount of decisions configured in the backend system.
    For additional help with this topic please see the userDecision Action Handler documentation:
    http://help.sap.com/saphelp_nw70/helpdata/en/7a/df014b037141ca9afc6433ed42b519/content.htm
    Beth Maben
    EP - Senior Support Consultant II
    AGS Primary Support
    Global Support Centre Ireland
    Please see the UWL Wiki @
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/uwl+faq  ***

  • Help with making class smaller

    Here goes... I used forte to design a gui and this gui is quite large. Its over 1400 lines already without any functionality added. Is there an easy way to make this into smaller classes. If this helps I used a desktop pane and inside I made around 9 internal frames with radio buttons and such. Any help is appreciated.

    You might take a look at your first posting; it has replies. :)

  • Can anybody help with UCCE feature "Work Mode on Outgoing" in Agent Desk Settings

    Hi,
    my customer wants to have a wrapup time till the agents change their state to "ready" by
    themself.
    So I have configured the maximum for wrapup time 7200 sec in Agent Desk Settings.
    But I have a problem with the feature "Work  Mode on Outgoing" in agent desk settings in
    ICM 7.5.5.
    I think I  recognized the function of this feature. It works like that:
    - if  an agent gets a call via ICM or directly on his phone he will be set  into work mode
    - if he make a call and the called number answer  that call the agent is still on work
    mode after he hung up
    - but  if the called number doesn't answer that call and the agent hangs up his  phone he
    is in ready/not ready state and that isn't the expected state.
    (  you can also rebuild this when you go off hook and then on hook again)
    The  problem is when the agent in state "ready" gets a call via ICM and  after he hung up
    his phone he is in state "work Ready". Now he makes an  outgoing call but this call will
    not be answered and if he hangs up his  phone he directly gets a new call from ICM because
    he was in "ready"  state.
    Is it possible to set a registry key or do another  configuration for that feature "work
    mode on outgoing" that it works for  every new call even if the call will not be answered?
    Cheers,
    Tobias

    ed_umansky wrote:The proper way to make outbound calls is to first go Not Ready then make a call using the desktop software.
    Agreed. In fact, with CAD and CTIOS you cannot make an outbound call when Ready.
    Regards,
    Geoff

Maybe you are looking for

  • CR - Trial Balance creation

    Hi Experts I am wanting to create a Trial Balance in Crystal Reports, the Standard SAP Business One report will not fulfill the requirement, the same goes if I create one through the Financial Report Templates. The Trial Balance will be based off all

  • Connecting To A .CSV or Excel File Directly With LightSwitch

    Despite my zipcodes.csv file is already present in the debug folder of my project, still my code is not able to find the file. Regards, Vishal

  • IOS 8.2 and Video Podcast Bug

    Is there a problem with losing video when playing consecutive video podcasts in IOS 8.2? I subscribe to NASA HD video feeds, and recently discovered a problem where the first video podcast I select plays perfectly, but when it automatically goes to t

  • How to design a listbox or tree control related to the database

    Now i have a problem to design a listbox or tree control, it is designed to connect to the database, if the related element in database changed, the element in listbox or tree control should also change. i have managed to read the element in database

  • ORA-28112: failed to execute policy function - Error in Application Builder

    Hey all, I've added a policy function to one of my tables and now I'm getting this error when I try to update a report region that references that table. "Query cannot be parsed within the Builder. If you believe your query is syntactically correct,