| View previous topic :: View next topic |
| Author |
Message |
TF3K
Joined: 11 Aug 2006 Posts: 2
|
Posted: Thu Mar 15, 2007 1:39 am Post subject: loadMovie stopped working!!! help please |
|
|
i have no idea what i've done.
the loadMovie worked perfectly and suddenly it has stopped working
doesn't matter how i try it.
even in a 2 frames movie.
i put in the second frame this code:
| Code: |
this.loadMovie("D:/a.jpg"); // and yes i have a picture there
stop();
|
also tried:
loadMovie("D:/a.jpg",this);
and ofcourse i tried
loadMovie("D:/a.jpg", empty_mc); //while empty_mc is an empty movie clip with the instance name of empty_mc
i have no idea what i can do.
tried it all.
and even if i put a movie clip that has something in it, it just makes it disappear. goes blank.
any ideas?
thanks. |
|
| Back to top |
|
 |
|
|
naveen
Joined: 15 Mar 2007 Posts: 9 Location: India
|
Posted: Mon Apr 02, 2007 12:55 pm Post subject: Re: loadMovie stopped working!!! help please |
|
|
Hey TF3K,
you have to load movie in a target or level...
For target do this:
loadMovie(D:/a.jpg, "empty_mc")
For Level do this:
loadMovie(D:/a.jpg, 1)
levels can be changed according to your needs...
ENJOY
Naveen |
|
| Back to top |
|
 |
flabbyrabbit 500+ Club

Joined: 25 Jan 2007 Posts: 623 Location: Midlands, England
|
Posted: Tue Apr 03, 2007 10:06 pm Post subject: Re: loadMovie stopped working!!! help please |
|
|
So he just got the quote marks on the wrong variables??
Flabby Rabbit |
|
| Back to top |
|
 |
|