Hi,
I’m having a small problem converting something to AS2. I hope someone he can point me in the right direction. Here’s my testcase.
I have a movie clip that’s associated with the Person class defined below. Inside the person class is a movieclip call arm that I have an animation in.
class Person extends MovieClip {
public function wave() {
arm.play();
}
}
The wave method should make the arm play but I get this compile error:
** There is no method with the name ‘arm’.
arm.play();**
How do I reference movieclips that are nside a class?
Thanks,