I tried to pass the string to a flash movie just like in CS2 and it throws and error "access to undefined property imgSrc"
I want a dynamic image to be loaded onto the movie.
//vars
var myrequest:URLRequest=new URLRequest (imgSrc);
var myLoader:Loader = new Loader();
//load image into holder
myLoader.load(myrequest);
I'm passing imgSrc from an HTML file , it used to work on CS2.