Load a swf then use BitmapData.draw() Not working?

I am trying to load a external swf and then use the BitmapData.draw() method to draw the loaded swf to a bitmap. This does not seem to work. If I draw some lines into the loaded swf using the .lineTo() method and then use BitmapData.draw() i do see the lines that are made by this method, but not the content i put in the swf. Is it just not possible to do this ?

thnx

I found the problem… I used onLoadComplete as the function where i called the BitmapData.draw() method… Needs to be onLoadInit. This method also makes sure you can get the width and height of the loaded movie :slight_smile: