Hey all, I’m kind of new and pretty stuck…I created a movie in my library, and i want to load it using actionscript. is loadMovie(); just for external SWF files?! if it is, what command do i use??
Thanks,
Kyle
haha… what’s up dude…
make sure you’re using linkage… when you’re looking at the movie properties, select linkage, and then give it a name…
… you can also use attachMovie();
_raf
im tryin to use the attatchMovie() command… i checked the linkage, exported for actionscript with identifier main…
on a button press i want it to load the movie so i do this:
on(release) {
attatchmovie(“main”);
}
right???
i HAVE to be retarded this week…
attactmovie is like this
movie.attachMovie(“linkagename”, “newname”, level)
ok i got it to load, but now i cant position it…cant i use :
main._x= blah;
main._y = bleh;
??
yeah… just make sure you have the right path for the movie…
like _root.newmovie._x= whatever
or _root.container.newmovie._x = whatever