Flash q
Flash q
Out of context: Reply #6
- Started
- Last post
- 7 Responses
- unfittoprint0
I fought the movieclips would act like buttons, so the onPress was to be included with the tother function inside the symbol.
but since you want to target them using an outside button you should call their instance name:
//write AS on a layer instead and name your buttons
button1.onPress(){
instance1.activate(true);
}button2.onPress(){
instance2.activate(true);
}. . .