flash Q.
flash Q.
- Started
- Last post
- 3 Responses
- something
I have a dynamic menu which is a component. Problem is I need to pass a variable everytime a button is 'onRollOver' not just when its released.
Can someone help me write a simple function that says when a buttons been rolled on
myButton = true;Thankyou!!
- chrisRG0
is this?
timeline:
button_btn.onRollOver = function(){
myButton = true;
}object:
on(rollOver){
myButton = true;
}
- blaw0
put the item on the stage, name it myButton.
toss this in the Actions layer:
_root.myButton.onRollOver = function (){
_root.overMyButton = true;
}
_root.myButton.onRollOut = function (){
_root.overMyButton = false;
}
- something0
cool thanks guys