Hi,
I import a poster.jpg picture in a file called info.fla using the following code (the tutorial source for the code is [[color=#800080]Loading into Target: Flash MX[/color]](http://www.kirupa.com/developer/mx/loading.htm#Loading movies into target: Flash MX) Loading .jpg dynamically with Flash MX) :
_root.createEmptyMovieClip(“postercontainer”,1);
postercontainer.loadMovie(“poster.jpg”);
postercontainer._x = 445 ;
postercontainer._y = 330 ;
_root.onMouseDown = function () {
startDrag (“postercontainer”,false) ;
}
this works fine.
In the main.fla file I call the function
_root.contents.loadMovie(“info.swf”);
I have a mc called contents in the main.fla
When this is done the picture poster.jpg does not show.
I think I should modify the actionscript, I am new to flash and I do not undestand what should I change.
Can pls someone help?
thanks
Alessandra