-
:ermm: ok here is the problem i have 2 movieclips with buttons nested in each.
The button states inside the movies have this code
on(rollOver){
if(_root.button2 == true){
_root.secondbut.gotoAndPlay("end")}
_root.button1 = true
this.gotoAndPlay("start")
}
i need to find out a way to implement this code into the already exisiting code above if possible.
on (release) {
gotoAndStop(3);
}
Is there any way to do this easily, any help would be greatly appreciated please help! :ermm:
-
Firstly, you can use button actions (i.e. on(rollOver), rollOut, press, release) on movie clip instances. So, first your going to have to make some sort of invisible button and apply the actions to it.
Then, maybe explain a little better what your trying to do and what actions are on what symbols or what timelines.