Skip to main content
Participant
September 25, 2006
Question

onEnterFrame & AttachhedMovieClips

  • September 25, 2006
  • 1 reply
  • 118 views
Hi,

How do i give an attached movie clip an onEnterFrame function?
Thanks in advance for any help

Justin
This topic has been closed for replies.

1 reply

Inspiring
September 25, 2006
myMc = attachMovie("mcFromLibary", "myMc", 10);
myMc.onEnterFrame = function(){
// give me something to do...
};