Help!!! Simple Button not working

I put 5 buttons in a layer on the created an "action" and
"labels" layer and entered the following code to go to that labeled
frame but it is not working!!!
This looks simple, I feel like an idiot asking this question.
Help!!!
Thanks to all who respond.

If you're using the web interface, you need to use the attach
code button...
Dave -
www.offroadfire.com
Head Developer
http://www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/

Similar Messages

  • Help - Simple mask not working in Flash CS4

    Hi everyone,
    Thanks for taking a minute to read my post.
    I am creating a very simple mask using motion tweening. I created some text on a layer and made it a masked layer. Then I created a mask layer which consists of a circle that will span across the text. When I play the movie the circle does not show up at all in the frames the mask layer spans (it's purple on a black background) and the circle does not move across the text like I told it to with the motion tweening. I don't know why it's not working. For some reason the circle isn't showing on the stage at all and it's not moving across the text. I don't know if I have it set up wrong on the timeline or what. Here's the steps I followed to create the mask:
    1.insert a new layer in which I named it mask and click frame 1 on this layer
    2. select the oval tools on the tools panel and set the stroke to none
    3. set the fill color to purple
    4. draw a circle and click the selection tool and drag a marquee around the circle to select it.
    5. click insert on the menu bar, click motion tween then click ok in dialog box about converting it to a symbol to be tweened
    6. click the last frame in the mask layer and drag the circle to the end of the line of text
    7.click mask on the timeline to select the mask layer, click modify on the menu bar, point to timeline then click layer properties
    8. verify the show check box is selected in the name section, click the lock check box to select it, click the mask option button in he type section, then click ok.
    9. play the movie in which the circle object covers the text on the masked layer as it moves across the stage
    Thanks for your help!
    ashmic19

    Update 8-2-10: In play mode the text was still visible when it shouldn't be but once I tested the movie the mask worked correctly with the text. So problem solved
    -ashmic19
    Thanks for all who viewed this. I finally figured out why it wasn't working. I had the mask layer locked. But now the circle is moving across the text but the text is viewable when it shouldn't be until the circle moves across it. How come it's doing this?
    ashmic19
    Message was edited by: ashmic19
    Message was edited by: ashmic19

  • Help! buttons not working, scroll is not working, and I can't reset my iPod

    I hope someone can help me.
    The play/pause button is not working and on the odd occasion it does - it actually scrolls through the songs backwards.
    The backward/forward buttons don't work either.. and when they do.. it's usually on go to backwards.
    The Menu button works - fat lot that's helping me.
    I can't reset my iPod either and I've tried the 5 steps in reset.
    Sometimes I can scroll forwards if I press the select and forward button together. Click Wheel is also not working 99% of the time.. the odd time it did work.. it was really choppy.
    Needless to say, I can't turn off my iPod since 99% of the time, it does not recognize the play/pause button.
    Please help!!!

    Hi mapletree1,
    You can check out the listing of Apple Stores in Canada on this page:
    Apple Store - Canada
    -Kylene

  • Simple button not working

    I am trying to simply create a button in Flash 8 that takes
    the user from Scene 1 to Scene 2. I use the goto and play Scene 1,
    Frame 1 but it is not working?

    boydmartin wrote:
    > I am trying to simply create a button in Flash 8 that
    takes the user from Scene 1 to Scene 2. I use the goto and play
    Scene 1, Frame 1 but it is not working?
    Search archives for "gotoAndPlay Scene"
    http://groups.google.com/groups?as_q=gotoAndPlay+Scene&num=10&scoring=r&hl=en&as_epq=&as_o q=&as_eq=&as_ugroup=macromedia.flash.*&as_usubject=&as_uauthors=&lr=&as_qdr=&as_drrb=b&as_ mind=1&as_minm=1&as_miny=2006&as_maxd=15&as_maxm=11&as_maxy=2006&safe=off
    this is one of the most frequently asked question in here,
    please try to do
    some search next time before posting.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Please help, simple query not working

    Have the following script that I would like to run at multiple sites and create table columns if necessary:
    DECLARE
    table_name VARCHAR2 (30) := 'SITE_STATISTICS';
    column_name VARCHAR2 (30) := 'SITE_MONTH';
    column_data_type VARCHAR2 (30) := 'DATE';
    column_count INTEGER;
    dynamic_sql VARCHAR2 (4000);
    BEGIN
    SELECT COUNT (1)
    INTO column_count
    FROM SYS.USER_TAB_COLUMNS utc
    WHERE utc.table_name = table_name AND utc.column_name = column_name AND utc.data_type = column_data_type;
    SYS.DBMS_OUTPUT.ENABLE (4000);
    IF column_count = 0 THEN
    dynamic_sql :=
    ALTER TABLE SITE_STATISTICS ADD (SITE_MONTH DATE);
    EXECUTE IMMEDIATE dynamic_sql;
    ELSE
    DBMS_OUTPUT.put_line ('Not running Dynamic Sql, found ' || column_count || ' corresponding rows in sys.user_tab_columns');
    END IF;
    END;
    EXIT;
    At a given site I do not have the given column, and running the select from sys.user_tab_columns manually returns 0 rows. However, when I run this script it outputs the following:
    Not running Dynamic Sql, found 128 corresponding rows in sys.user_tab_columns
    What's going on!?

    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create table abc (c1 number(10));
    Table created.
    SQL> DECLARE
      2     table_name1                   VARCHAR2 ( 30 ) := 'ABC';
      3     column_name1                  VARCHAR2 ( 30 ) := 'SITE_MONTH';
      4     column_data_type1             VARCHAR2 ( 30 ) := 'DATE';
      5     column_count                  INTEGER;
      6     dynamic_sql                   VARCHAR2 ( 4000 );
      7  BEGIN
      8     SELECT COUNT ( 1 )
      9       INTO column_count
    10       FROM SYS.user_tab_columns utc
    11      WHERE utc.table_name = table_name1
    12        AND utc.column_name = column_name1
    13        AND utc.data_type = column_data_type1;
    14  
    15     SYS.DBMS_OUTPUT.ENABLE ( 4000 );
    16  
    17     IF column_count = 0 THEN
    18  
    19        dynamic_sql :='ALTER TABLE ABC ADD (SITE_MONTH DATE,SHIP_CONTANK INTEGER,SHIP_CONRAIL INTEGER)';
    20  
    21        EXECUTE IMMEDIATE dynamic_sql;
    22     ELSE
    23        DBMS_OUTPUT.put_line (    'Not running Dynamic Sql, found '
    24                               || column_count
    25                               || ' corresponding rows in sys.user_tab_columns'
    26                             );
    27     END IF;
    28  END;
    29  /
    PL/SQL procedure successfully completed.
    SQL> desc abc
    Name                                      Null?    Type
    C1                                                 NUMBER(10)
    SITE_MONTH                                         DATE
    SHIP_CONTANK                                       NUMBER(38)
    SHIP_CONRAIL                                       NUMBER(38)

  • IPod touch 5th gen. Home button stuck and power button not working! Please help!

    I have an iPod 5th Generation and the home button is jammed down! It felt sticky earlier but now it's stuck down. I used it when the home button wasn't working and had to use my notifications to change from app to app (as I didn't know about assistive touch). I turned it off, but now the power button is no longer responsive! The button isn't stuck, but it doesn't work anymore. It was working fine before, but now it won't respond. Please help!

    Try:
    http://snapguide.com/guides/calibrate-your-home-button/?utm_expid=69945963-15
    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    You can do it an an Apple store by:
    Apple Retail Store - Genius Bar
    or sent it in to Apple. See:
    Apple - Support - iPod - Service FAQ
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • TS3694 No sound and ringer button not working. I cannot play music but when I put my Iphone 4 on the dock it plays music. This happens when I updated my phone to IOS 6.1.3..The phone doesnt have any carriers we only used this just like Itouch. Please help

    Please help. Since I updated my Iphone4 to ISO 6.1.3...The ringer button not working, can't play any music (but ok with the dock), headphone sound is muffled. What can I do? I tried restoring and downgrading but it won't let me.

    Hi there,
    Thanks for reaching out to the community.
    Please help. Since I updated my Iphone4 to ISO 6.1.3...The ringer button not working, can't play any music (but ok with the dock), headphone sound is muffled. What can I do? I tried restoring and downgrading but it won't let me.
    It appears like you may have a hardware issue with your ringer button and internal speaker that came to light after the update. If you have already restored your iPhone back to factory settings using iTunes, you may need to have your phone serviced.
    Some potential good news... Check your headphone jack for lint. There may be enough to cause a muffled connection. You can try to blow it out with compressed air or very carefully pulling out any solid objects that may affect the connection.
    Best of luck!

  • My power/sleep/wake button not working.. please help

    Hi guys, my power/sleep/wake button not working what should i do. I went to apple store and they said i will be charge £100 as im no longer on warranty. is there another way, or app that i can use as substitute for that button?
    Your advise and help will be very much appreciated.
    Thank you so much
    G

    Hi Choustonator..
    Thank you for your your help.
    I have tried it but I dont have the assistive touch option.

  • Help button not working on firefox.How to fix?

    help button not working.

    Hello,
    Lets give Firefox some Tuneup.
    The Refresh feature (called "Reset" in older Firefox versions) can fix many issues by restoring Firefox to its factory default state while saving your bookmarks, history, passwords, cookies, and other essential information.
    '''''Note:''' When you use this feature, you will lose any extensions, toolbar customizations, and some preferences.'' See the [[Refresh Firefox - reset add-ons and settings]] article for more information.
    To Refresh Firefox:
    # Open the Troubleshooting Information page using one of these methods:
    #*Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''. A new tab containing your troubleshooting information should open.
    #*If you're unable to access the Help menu, type '''about:support''' in your address bar to bring up the Troubleshooting Information page.
    #At the top right corner of the page, you should see a button that says "Refresh Firefox" ("Reset Firefox" in older Firefox versions). Click on it.
    #Firefox will close. After the refresh process is completed, Firefox will show a window with the information that is imported.
    #Click Finish and Firefox will reopen.
    Did this fix the problem? Please report back to us!
    Thank you.

  • Home button not working on my iphone4..pls help....

    home button not working on my iphone4..pls help...

    Try this:
    Firstly open setting
    and hold power nd home buttom until you wont reach to your homescreen!
    it might fix your problem

  • Button not working to change to home page help please

    Need help iPhone 4 button not working to go back to home page can I reset

    sounds like it's time to visit Apple for an out of warranty replacement.

  • I purchased I phone 5 from USA covered under Apple care  . I'm in India now. Wake/sleep button not working. Apple care here have refused to replace or repair it though it is still under international warranty. Feeling harassed. Can some one help.

    I purchased I phone 5 from USA covered under Apple care  . I'm in India now. Wake/sleep button not working. Apple care here have refused to replace or repair it though it is still under international warranty. Feeling harassed. Can some one help.

    Is there an "APPLE STORE" in India or you just went in a reseller store?
    There is a replacement program for sleep/wake button for free. Just look for an Apple Store and make a reservation at Genius Bar.
    I have an iPhone 5, bought in Dubai U.A.E.
    It is a US model (model A1428) which is different of the model use here in Italy/Europe
    My serial number is qualified for battery replacement program.
    I thought the Apple Store wouldn't repair my phone because I bought it from another country , a different model and it is already out of warranty.
    The Apple store's staff just checked if my iPhone's serial number is eligible for the program and he replaced the battery for free today.

  • Help! Ipad not turning, buttons not working!

    My iPad sometimes stops turning sideways. Lock button, lower volume button not working. iPad hasn't been backed up in 20weeks but i don't know if that has to do with any thing. HELP!!!

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after the iPad shuts down, then press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds). Ignore the "Slide to power off"

  • IPod touch 4th generation, home button not working at all, Help?

    IPod touch 4th Generation , home button not working at all, Help?

    - Try restoring your iPod to rule out a software problem.
    - The try:
    fix for Home button
    Fix a broken, unresponsive or sticky iPhone Home Button
    iPad 2 home button fail: Apple Support Communities
    You can turn one Assistive Touch in Settings>General Accessibility to use the screen instead. See chapter 30 of the users guide
    iPod touch User Guide (For iOS 5.0 Software)
    If under warranty make an appointment at the Genius Bar of an Apple store.

  • Help me .....My HOME button not working and responds very very slowly

    My home button not working is very slowly
    Help me pliss

    Hello Frajaisa
    I have highlighted below the troubleshooting steps for issues with the Home button slowly responding.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    The Home button is slow to respond
    If the Home button is slow to respond when exiting one application, try another application.
    If the issue exists only in certain applications, try removing and reinstalling those applications. Get further assistance in installing and troubleshooting applications.
    If the issue continues, Try turning iPhone off and then on again. If the iPhone will not restart, try resetting it.
    If the issue is still happening, try to restore the iPhone.
    Seek service is the issue is still occurring.
    Regards,
    -Norm G.

Maybe you are looking for

  • My iphone is no longer photo streaming to my ipad.

    My iphone is not photo streaming my photos any more to my ipad ?

  • Pdf's Links and Bookmarks

    Hello, I know you can add links and bookmarks within a pdf, that will take you to other areas of that particular pdf.  However, I need to put a link or bookmark into a pdf that will allow a user to click on a link in Captivate, Flash, Dreamweaver, et

  • UIManager.look and feel buttons or javax.swing

    Hey, i want to use the ok, cancel etc. button that you get in a JFileChooser or a JOptionPane. Can they be found in the UIManager or in the javax.swing? i tried to extract them from the JFileChooser by: JFileChooser chooser = new JFileChooser("/"); /

  • Photo file sizes for emailing

    Greetings I normally take photos at the highest resolution, making for some large file sizes. I was wondering how or if its possible to email pictures taken from the camera as a smaller file size, without having to convert/crop/manipulate the picture

  • Error when creating rfc function module

    Hi, now i am creating one rfc functionmodule (ZSUSR_USER_AGR_ACTIVITYGR_GET) by copying existing general standard functionmodule. problem is, in tables i have one parameter called USER_ACTIVITYGROUPS i referred this one with TYPE-POOLS TYPE ZUSTY_T_A