Thread
:
problem with a button inside a movieclip
View Single Post
Mime
2005-10-24 #
4
You could always build some more keyframes into the MC timeline. In your rollOver function - you could then tell the player head to go to another keyframe where some actionscript tells the mc to become disabled (mc._enabled = false; )
However this would stop the rollover function from continuing.
Then you could have the button work.
The only thing then you need to do is have the MC become enabled somehow. Maybe over time with more keyframes or by adding the mc._enabled = true; via the button release or rollOut funtions.
An fla would help to try and nail it.
Feel free to mail it to me if you want any help.
Grant.
Secondly - if you are using actual buttons (F8 Button) try to use movieclips instead.
They are generally easier to work with, especially with actionscript.
Mime