Flash Buttons
Flash Buttons
Out of context: Reply #3
- Started
- Last post
- 15 Responses
- autonoma0
tellTarget is seriously outdated code. Using buttons is outdated as well. Instead, use a movie clip and the following code:
Next.onRollOver = function() {
gotoAndPlay(2);
}
Next.onRollOut = function() {
gotoAndPlay(3);
}