How to test movie without error after load swf file?
Hi.. I want to load document class in fla file. I use this code below and when I test scene only its really work.
var loader:Loader=new Loader();
addChild(loader);
loader.load(new URLRequest("game.swf"));
but I have problem when I test Movie for my whole file fla. and the error is:
1151: A conflict exists with definition loader in namespace internal.
which is mention this code below:
var loader:Loader=new Loader();
can you help me solve this problem please?
Thank You