Link to home
Start Free TrialLog in
Avatar of Dekastello
Dekastello

asked on

Buttons in two layers and cursor change.

Description:
- I have got area on the scene (I’ve done as button). If you go over the area (button) with cursor
(rollOver) {
    gotoAndPlay(2);
}
- start to play an animation on a frame 2
- other buttons are (as menu) inside the area (top the button)
- the animation stop playing if you go out the area (button) -> you go back to the frame 1

Problem 1:
- If I use for the area (button) an instruction
(rollOout) {
    gotoAndPlay(1);
}
- stop to paly the animation if you go over the menu buttons also
-> that is unwelcome
I’ve resolved the problem -> put other bigger button behind the area (button) and use action for it
(rollOout) {
    gotoAndPlay(1);
}
- there is another problem
- if you go out the area (button) too fast -> the scene doesn’t go to frame 1 and still play the animation on frame 2
-> that is unwelcome also

How could I do it?

Problem 2:

If you go over the area the “arrow” cursor change to a “hand” cursor because it is done as a button.

I don’t like it because the area (button) doesn’t have any active attribute for users.

How could I do that? I want standard cursor (arrow) if you go over the area.

Tank’s a lot for your help.
Peter.
Avatar of mtb007
mtb007

i think i have some understanding of what you want, but im not sure.  you could send me the file so i could look at it. and if you could explain it a little better....


peace
mtb007
koscho.j@mellon.com
ASKER CERTIFIED SOLUTION
Avatar of Zeffer
Zeffer
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial