Hi,

im making a simple swf file. I only need it to load my justin.tv channel but its not working. This is my A3 script:

Code:
import flash.display.MovieClip;

var Xpos:Number = 110;
var Ypos:Number = 180;
var swf:MovieClip;
var myLoader:Loader = new Loader();  

var url:URLRequest = new URLRequest("http://www.justin.tv/widgets/live_embed_player.swf?channel=mychannel"); 

myLoader.load(url);
myLoader.x = Xpos;
myLoader.y = Ypos;
addChild(myLoader);
when i export the movie, i get a lot of output errors, such as security violations and things like that. However, im able to load other swf movies with the exact same code. Could you please help me?

Thank you.