Buttons going no where.

I have created an image where it has two different invisible
buttons on it. Neither of the buttons are overlapping each other
but I am pretty sure I have some sort of layering error as when I
alter the order via "back to front" one button works and the other
button takes me nowhere.
So with this said, how do I make both of the buttons work. Is
there some sort of special layering system or code I am missing...
I am using the standard
Go to Frame(X)
script....

Here is a handy trick that might help. Go to your Object
Inspector and
type in "the rollover" (without quotes). Then mouse over your
stage.
it will tell you which sprite will receive the event if you
were to
click on it. Typically, it will be the sprite under the
cursor that is
in the highest numbered sprite channel.
Once you see how to place your sprites, it should be a lot
easier to
make things work.

Similar Messages

  • Custom button goes missing after click the button in Customer Master

    Hi All,
    I have one query regarding Custom tab button in Custome MAster.I have implemented BAdIs using CUSTOMER_ADD_DATA_CS and CUSTOMER_ADD_DATA  to match my requirment.
    Query:
    While click the custom button(which i have created in Customer Master) , the subscreen is displayed  but the Custom Button is missing.Where in Standard Buttons like 'GENERAL DATA' and 'COMPANY CODE DATA' Std buttons in Customer master Etc. buttons going to disable mode while click these button in custome mastar.
    Is there any OSS notes to implement OR we required to set up some PF status to match above requirment.
    Please let me know.
    Thanks,
    Sridhar

    If I follow you, no. That's the way it works. The buttons are composited with the background so become part of it. I'd rethink the design.
    Basically, you don't want the highlights to determine the color of unselected buttons. You'll always have fringes and jaggies. Having a non-transparent color set for the unselected state kind of does what you want, but won't look the best.

  • My power button goes on blinking what is the problem

    my hp laptop power button goes on blinking .i removed the battery and by fiitting the adapter button nothing worked out.

    Hi @faizuneesa ,
    Welcome to the HP Forums!
    It is a terrific place to find answers.
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More
    I believe  that when you connect the power adapter, the power light blinks.
    Here is a link to Using and Testing the AC Power Adapter.
    I would also check the physical notebook connection for any bent pins or damage.
    Here is a link to Computer Does Not Start and the LEDs Blink or the Computer Beeps as I am unsure what light is blinking.
    If this has not helped would you please provide your exact model of HP notebook , your Operating System and the results from your troubleshooting.
    Also exactly where you see the blinking lights.
    How Do I Find My Model Number or Product Number?
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Anytime i go into "settings" it goes to where i am stuck in imessage set up-- how do i get out and to main menu in settings

    Any time I go into "settings" it goes to where i am stuck in imessage set up-- how do i get back to main menu under settings?

    Double tap Home button and delete Settings app in multitask-bar.
    Do a reset:
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have-I guess I can auto start the DVD but would prefer a button-how and where would I put this "play all" marker??

    I want to create a "Play All" chapter marker that will play the video from start to finish in addition to the standard chapters I have…I guess I can auto start the DVD but would prefer a button…how and where would I put this "play all" marker?? Thanks..

    The start chapter button is a play the whole movie button regardless of how many other markers you have.
    Once a DVD starts playing it continues to the end.
    Chapters marker simply gives the viewer a place to start playback whether it be the start, middle or near the end.
    Al

  • Using radio button in a where clause

    Dears,
    I'd like to filter my result using the value of a radio button in my where clause.
    Could you tell me if is it the right way to do? i get an issue in my code below
    DECLARE
       v_counter     INTEGER         := 0;
       v_line        VARCHAR2 (4000);
       v_rec_in_row  INTEGER         := 12;
       lpar varchar2(50);
    BEGIN
       HTP.prn ('<table>');
       HTP.prn ('<tr>');
       HTP.prn ('<td>');
       lpar:=v('P48_LVAR');
       CASE
        WHEN lpar='SERVERS'
                    THEN 
                      FOR c IN
                          ( SELECT   CASE
                    WHEN SERVER_MARK='SUN'
                    THEN     '<table width="">'
                             || '<tr><td><a href="#WORKSPACE_IMAGES#New Image.GIF"><img src="#WORKSPACE_IMAGES#New Image.GIF"/></td></tr>'
                             || '<tr><td style="text-align:center"><h1>'
                             || SERVER_NAME
                             || '</td></tr></a></table>'
                    WHEN SERVER_MARK='HP'
                    THEN     '<table>'
                             || '<tr><td><a href="#WORKSPACE_IMAGES#New Image.GIF"><img src="#WORKSPACE_IMAGES#hp.GIF"/></td></tr>'
                             || '<tr><td style="text-align:center"><h1>'
                             || SERVER_NAME
                             || '</td></tr></a></table>'
                                       END AS emp
                              FROM SERVERS
                         WHERE CASE
                              WHEN v('P48_RA_ENV')='ALL' THEN SERVER_ENV LIKE '%'
                              WHEN v('P48_RA_ENV')='PROD' THEN SERVER_ENV LIKE '%PROD%'
                              WHEN v('P48_RA_ENV')='UAT' THEN SERVER_ENV LIKE '%UAT%'
                              WHEN v('P48_RA_ENV')='DEV' THEN SERVER_ENV LIKE '%DEV%'
                              END)Thx
    Celio

    Acharya,
    Tjis is all my code, i change it a little , it works fine in sqlworkshop but when I execute it in my page i don't get result
    DECLARE
       v_counter     INTEGER         := 0;
       v_line        VARCHAR2 (4000);
       v_rec_in_row  INTEGER         := 12;
       lpar varchar2(50);
    BEGIN
       HTP.prn ('<table>');
       HTP.prn ('<tr>');
       HTP.prn ('<td>');
       lpar:=v('P48_LVAR');
       CASE
        WHEN lpar='SERVERS'
                    THEN 
                      FOR c IN
                          ( SELECT   CASE
                    WHEN SERVER_MARK='SUN'
                    THEN     '<table width="">'
                             || '<tr><td><a href="#WORKSPACE_IMAGES#New Image.GIF"><img src="#WORKSPACE_IMAGES#New Image.GIF"/></td></tr>'
                             || '<tr><td style="text-align:center"><h1>'
                             || SERVER_NAME
                             || '</td></tr></a></table>'
                    WHEN SERVER_MARK='HP'
                    THEN     '<table>'
                             || '<tr><td><a href="#WORKSPACE_IMAGES#New Image.GIF"><img src="#WORKSPACE_IMAGES#hp.GIF"/></td></tr>'
                             || '<tr><td style="text-align:center"><h1>'
                             || SERVER_NAME
                             || '</td></tr></a></table>'
                                       END AS emp
                              FROM SERVERS
                         WHERE SERVER_ENV LIKE CASE
                              WHEN v('P48_RA_ENV')='ALL' THEN '%'
                              WHEN v('P48_RA_ENV')='PROD' THEN '%PROD%'
                              WHEN v('P48_RA_ENV')='UAT' THEN '%UAT%'
                              WHEN v('P48_RA_ENV')='DEV' THEN '%DEV%'
                              END)
                              LOOP
                               v_line := v_line || c.emp || '</td><td>';
                               v_counter := v_counter + 1;
                               IF v_counter = v_rec_in_row
                               THEN
                                   HTP.prn (v_line);
                                   HTP.prn ('</td></tr><tr><td>');
                                   v_line := NULL;
                                   v_counter := 0;
                               END IF;
                           END LOOP;
                           HTP.prn (v_line);
                           HTP.prn ('</td></tr></table>');
       WHEN lpar='ZONES'
                THEN 
                      FOR c IN
                          ( SELECT '<table>'
                             || '<tr><td><a href="#WORKSPACE_IMAGES#New Image.GIF"><img src="#WORKSPACE_IMAGES#New Image.GIF"/></td></tr>'
                             || '<tr><td style="text-align:center"><h1>'
                             || ZONE_NAME
                             || '</td></tr></a></table>'
                     emp
                        FROM ZONES)
                        LOOP
                               v_line := v_line || c.emp || '</td><td>';
                               v_counter := v_counter + 1;
                               IF v_counter = v_rec_in_row
                               THEN
                                   HTP.prn (v_line);
                                   HTP.prn ('</td></tr><tr><td>');
                                   v_line := NULL;
                                   v_counter := 0;
                               END IF;
                           END LOOP;
                           HTP.prn (v_line);
                           HTP.prn ('</td></tr></table>');
       WHEN lpar='ALIAS'
                THEN 
                      FOR c IN
                          ( SELECT           
                               '<table>'
                             || '<tr><td><a href="#WORKSPACE_IMAGES#New Image.GIF"><img src="#WORKSPACE_IMAGES#New Image.GIF"/></td></tr>'
                             || '<tr><td style="text-align:center"><h1>'
                             || ALIAS_NAME
                             || '</td></tr></a></table>'
                                      emp
                                  FROM ALIAS)
                                  LOOP
                                    v_line := v_line || c.emp || '</td><td>';
                                    v_counter := v_counter + 1;
                                    IF v_counter = v_rec_in_row
                                    THEN
                                        HTP.prn (v_line);
                                        HTP.prn ('</td></tr><tr><td>');
                                        v_line := NULL;
                                        v_counter := 0;
                                    END IF;
                                END LOOP;
                                HTP.prn (v_line);
                                HTP.prn ('</td></tr></table>');
               WHEN lpar='FS'
                THEN 
                      FOR c IN
                          ( SELECT
                                  '<table>'
                             || '<tr><td><a href="#WORKSPACE_IMAGES#New Image.GIF"><img src="#WORKSPACE_IMAGES#New Image.GIF"/></td></tr>'
                             || '<tr><td style="text-align:center"><h1>'
                             || FS_NAME
                             || '</td></tr></a></table>'           
             emp
          FROM FS
       LOOP
          v_line := v_line || c.emp || '</td><td>';
          v_counter := v_counter + 1;
          IF v_counter = v_rec_in_row
          THEN
             HTP.prn (v_line);
             HTP.prn ('</td></tr><tr><td>');
             v_line := NULL;
             v_counter := 0;
          END IF;
       END LOOP;
       HTP.prn (v_line);
       HTP.prn ('</td></tr></table>');
    END CASE;
    END;

  • While opening pdf files the menu bar, navigation bar  cracks unobviously and also close and minimise buttons  goes hidden..Facing the problem for last one month. Please help.

    while opening pdf files the menu bar, navigation bar  cracks unobviously and also close and minimise buttons  goes hidden..Facing the problem for last one month. Please help.

    The latest Kaspersky software version is 15.0.1.415 or 15.0.1.415ab.

  • I accidentally pressed the button on facetime where you can't use that email for facetime..... if i restore it will my facetime work??

    I accidentally pressed the button on facetime where you can't use that email for facetime..... if i restore it will my facetime work??

    Try the forum for the device or computer

  • Mute button goes on all the time

    i find my mute button goes on all the time unless i put the phone in speaker mode.  I believe its the sensor but is there anyway to  fix it without going to the genius bar.
    Also the silent button doesnt work on the side.

    If your silent button doesn't work, and you think the sensor is malfunctioning, just how do you think these can be fixed without going to the genius bar?

  • No PHOTOS tab & NO AUTHORIZE/DEAUTHORIZE button...Where do I find it??...TY

    My itunes does not have a photos tab and the authorize/deauthorize button...Where do I find it?...TY

    ShineOn!! wrote:
    My itunes does not have a photos tab
    correct, it doesn't. you would see a photos tab if you connect an iPod Touch or iPhone in the summary tab of those devices.
    and the authorize/deauthorize button
    it's not a button, it's a menu entry. click on the store menu in iTunes.
    JGG

  • Palm tx home button goes to contacts

    The 4 buttons on the bottom of my Palm TX seem to be mixed up. The leftmost home button goes to APPOINTMENTS, the left inside button goes to CONTACTS, the button to the right inside button goes to TASKS, and the rightmost button goes to NOTE. Is there a way to reset these to point to the correct application?
    This question was solved.
    View Solution.

    winglift,
    I have never used a TX.
    Read this thread, it might help you connect to Wifi
    http://h30434.www3.hp.com/t5/Palm-OS-WinMo-Hardware-and-Software/New-router-now-TX-can-t-connect-to-...

  • My Mac is slowing down and when I jump on the internet I see the rainbow ball a lot and it goes no where, I have to shut it down and try to restart several times a day?

    My Mac is slowing down and when I jump on the internet I see the rainbow ball a lot and it goes no where, I have to shut it down and try to restart several times a day?

    See if either of these help    : http://www.maclife.com/article/feature/25_ways_speed_your_mac
    http://www.macworld.com/article/151583/2010/05/spinningbeachballofdeath.html

  • G4 MDD power button going bad?

    Hi all -
    I'm using a g4 MDD dual 1gig machine. Has been working great for the past few months, till just now. When I power down, the computer won't restart, unless I unplug it. (what?) That's right, the computer works fine, I turn it off and the power button will not turn the computer on unless I physically unplug the machine for a split second. After that it powers right up (at least for now). Prior to unplugging, the power switch does nothing, no lights, no chimes, nothing. It's like there is no power going to the compuer at all.
    Does this sound like the power button is going bad or maybe something else? A few months ago I had PRAM/ PMU issues - could they be coming back?
    Any advice is much appreciated. Thanks in advance!

    I took care of my power-up issue tonight by working on my power supply. Here is the posting I made in another thread:
    Here is what I did to troubleshoot my power issue. Your power supply can be serviced and this post offers a couple thoughts and some troubleshooting suggestions. Please read it through to the end. This isn't a cure-all for all G4 Macs, but the steps I followed seem to cover a number of bases and might prove helpful to those who are really frustrated.
    I've owned a Mac every year all the way back to 1987 and have never had an issue until now and I am convinced my problem may have been triggered by a power surge or brown-out, which we seem to have experienced a lot of around here lately. This post refers to the Samsung power supply with Apple Part Number 614-0224.
    I have a G4 Dual 1.25 MDD I purchased in 2003. I have had a brief issue with powering up my CPU. It wouldn't power up last weekend. I unplugged the power cord, then reconnected it to the machine and it powered up. I reasoned the power cord had become loose, but then last night I couldn't get it to come up at all. Not even a click. No lights.
    So I tried all the easiest possible solutions: resetting the PRAM (pulling the battery from the logic board) and resetting the PMU (Power Management Unit). The switch, by the way, is located near where the ATA drives plug in to the logic board. Neither of those two things solved my problem. The CPU would still not power up.
    I checked the lithium battery voltage with a voltmeter. It was at 3.6v, so it was still good.
    I then decided my issue was probably with the power supply. With the power cord disconnected from the back of the CPU, I pulled the black power connection from the logic board and performed a power supply voltage test following the pin schematic found in this thread:
    http://docs.info.apple.com/article.html?artnum=58561
    The +5v trickle voltage found at Pin 9 was not present. I had no other voltage readings on any of the other pins. My issue HAD to be with the power supply.
    Tonight I removed the power supply by disconnecting all of the optical drives (I have two DVD burners in this unit), all of the hard drives (three) and all of the logic board connections.
    I removed all of the screws from the outer casing of the power supply, including the fat screws attaching the two black fans to the unit and the one long screw in the middle and near the edge of where the two fans are. The casing came right off.
    There have been a lot of questions as to whether there are fuses in these power supplies. There has to be some protection for them and I have yet to see any power supply that did not have a fuse or resettable circuit breaker. This power supply was no different...it has a 250W, 8A fuse that is easily accessible and is located on the same side as the male power socket, near the edge of the circuit board. It is hiding under a yellow shield and is right next to a plastic connector.
    Bingo! My fuse was blown. Many glass fuses will show some sort of blackness and mine did, as well as being able to see the actual glob of metal where the fuse burst.
    What caused a fuse to blow will be different for each machine. I believe in my case it suffered from a power surge. There were no visible signs of burns from arcing, popped capacitors, shorts or bad chips. The board was completely clean, which tells me the issue was near the power source. The fuse may also have been on the verge of popping when I unplugged and reconnected the power cord.
    Everything's speculation, but replacing the fuse did the trick in my case and I saved myself time and about $150 (on average for a used PS on eBay). I picked up a second fuse to tape to the inside of the CPU, near the power supply, so I will have a backup fuse if I need it in the future. I may also have a drive that is going bad, or I may have too many drives operating off one supply. My Mac's been configured like this for about five years now. I will replace at least two drives with new, larger capacity drives. I keep my video and digital image files on separate drives, but have a third drive I can blow out. That surely will help prolong the life of my power supply.
    While I had the computer apart I gave it a good vacuum and a little air can action. Dust can aid overheating and defeat the purpose of good airflow from fans.
    Hope this helps.

  • Home Button goes unresponsive when iPad locks, accompanied with Safari crashes

    As the title says, I've taken notice that my iPad is slowly deteriorating performance wise. Safari has been increasing crashes over the past week, to the point where I think something is up if it DOESN'T crash within the last 10-30mins. The browser will freeze, and boot me out to the Home Screen.
    I am now at the point where, once my iPad goes black after not fiddling with it for awhile, the Home Button will not bring me to the Lock Screen unless I double click it for the mini-music controls to appear. These things seem to have started appearing only after I updated to the latest iOS 5.0.1 update.
    My iPad has suffered no outside trauma, the battery rarely gets to less than 5% life, and I've disabled unneeded and unused features, such as many of the Spotlight Searches. I do however, keep roughly 6-8 tabs open in Safari regularly, as I like to hop tabs as my attention span demands lol (that in itself may be the reason for the browser crashes..).
    Does anyone else seem to have any similar issues, or know that it might be a firmware/hardware problem that is documented somewhere? I have seen other threads about unresponsive iPads/iPhones but nothing that matches my problem specifically.

    I'm hoping I wont have to get to that point. But thats what its looking like its coming to. I haven't come across anyone else with the issue.

  • HT4061 When I tap the screen and the button copy appears where does it copy too? If its to clipboard where do I find it?

    Hi,
    When I tap the screen and the copy button appears if I copy to clipboard where do I find clipboard and can I save it to a folder?

    Hi
    When you tap the text and the blue copy command appears... you must TAP the copy command to invoke it.
    You can save it anywhere that you can paste something.  Go to that place and tap again and the paste command should appear , then TAP paste.
    I use Notes as a convenient temporary storage if I am not going to paste it right away and before I forget what I have copied!
    Clipboard?  I think of the clipboard as being my fingernail on my tapping finger!

Maybe you are looking for

  • My iPod touch is not recognised by iTunes

    Really frustrating now that Apple make you buy all this needless software which is not necessary with any other external drives or sticks. Then it doesn't work and the solution is not to be found immediately on the net. Is this what I can expect in t

  • Address Book: How do you select, copy and paste info to an email?

    I look up a contact in my Mac Address Book and want to cut and paste email/address and phone into an email I am writing in another application - in this case using AOL online. It seems that you cannot select and paste the information or selected part

  • Trouble installing bootcamp drivers in Windows XP

    I have an early 2011 Macbook Pro and I installed Windows XP Professional SP3 on my Mac just fine but according to the Bootcamp Assistant Guide, it says while in Windows insert your Mac OS X disc to install bootcamp driver by selecting setup.exe from

  • Quicktime playback is terrible

    My quicktime playback is terrible. I have quicktime v7.4.5(v25). The picture is unclear, pixelated, and very choppy. I am trying to play videos from my Kodak digital camera and streaming videos. I tried downloading flip4mac and VLC. I got nothing fro

  • How can I make the player show the song's rating all the time?

    I want to be able to see the rating of the song that is playing.  I know I can open a menu that will show it, but I want to be always displayed in the player.  How do I do this?  also: I am trying to rate all the songs in my library.  I have tried to