ActionScript 2.0 Problems
Okay, I have this character in my game here, and I want to make it so that you can click him, and he moves out of the cow's way. But when I when I type in the most obvious coding,
So I tried
I also tried
Is there any other coding I can use to fix this problem?
- Code: Select all
on(release){
gotoAndPlay(2);
}
So I tried
- Code: Select all
on(release){
_root.gotoAndPlay(2);
}
I also tried
- Code: Select all
on(release){
this._parent.gotoAndPlay(2);
}
Is there any other coding I can use to fix this problem?