Skip to main content
November 14, 2007
Answered

loadMovie Issues

  • November 14, 2007
  • 4 replies
  • 299 views
I've created a test file for loading and attaching movies. I can't get the loadMovie to load into the instance created with the attachMovie script. My script referances say that I can load a movie into an instance on the stage. Additionally, I'm having trouble unloading the movie once I return to the attachMovie button. Can someone tell me where I'm going wrong?
This topic has been closed for replies.
Correct answer kglad
try:

4 replies

kglad
Community Expert
Community Expert
November 14, 2007
you're welcome.
November 14, 2007
Great! I thought it had to do with its heirarchy but just never went to the parent. Thanks
November 14, 2007
Thanks for the reply. The trace on attached_mc returned undefined; but the movie is attached and playing. The scipt I used is:
on (release) {
blank_mc.attachMovie("AttachMovie","attached_mc",10,{_x:10, _y:10});
}
Any idea?
kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
November 14, 2007
try:

kglad
Community Expert
Community Expert
November 14, 2007
use trace(attached_mc) in your on(release) handler to see if you've really created a movieclip with that path/name.