hi all,
i hope someone can help me with this one as its driving me up the wall!!
i am pretty new to as3, and i dont know if its me but have things got alot more complicated?
i have made 4 .swf’s that all work fine individually. i have 4 scenes that each .swf is to load into and play in turn when the main movie loads in.
before the loadmovie code was:
stop();
unloadMovieNum(2);
loadMovieNum(“fcbp01.swf”, 2);
now however i have been advised to use:
var request:URLRequest = new URLRequest(“achange.swf”);
var loader:Loader = new Loader();
loader.load(request);
addChild(loader);
this does not work and i get the error code:
1151: A conflict exists with definition loader in namespace internal.
var loader:Loader = new Loader();
im sure there is a simple way round and any assistance would be greatly recieved
![]()