I have 2 movie clips in my scene, one is charlie brown running and another is lucy lifting a football.
The movie clip instances are aptly named: lucyLifting and charlieRunning.
When I get to frame 75, I run the following code:
stop();
trace(lucyLifting);
trace(charlieRunning);
lucyLifing.stop();
charlieRunning.stop();
and I get the following output:
[object MovieClip]
null
Why isn't it recognizing my second movie clip instance? This is very frustrating....
Thank you in advance.