I'm trying to load an SWF into another in AS3/Haxe. The loaded SWF contains some images - but only on some Shape.graphics
elements. (Like graphics.beginBitmapFill();
...)
This images are not smoothed, and jaggy.
Can this images be smoothed anyhow during runtime?
Any hack interested! :)
Thanks in advance! Tom
Update: Sorry, but I forget to mention, that I'm loading more AS2-SWFs (AVM1) into one AS3-SWF (AVM2) with AVM2Loader, which hack the loaded bytes, and convert the AVM1 SWFs into AVM2 - it works very well. :)
So, in these SWFs I need to find the images/bitmaps, but only found the Shapes
, which graphics
elements has the 'images'. If I clear this graphics
, then all images are gone, so I think, the images are in some graphics.beginBitmapFill(...);
, without smoothing. I want to reach them, and switch smoothing on at runtime, if possible.
(Sorry, if the first time I was not enough clear.)
Edit (Jan 23 '14): I found solution for it. It is not fast, and required Flash Player 11.6. Every MovieClip
graphics properties has a new readGraphicsData
function, which give all the graphics commands (Vector IGraphicsData
) to draw the whole MC. And iterate in these commands, if I change every bitmapFill
command smooth
parameter to true, and redraw the MC, it will be smoothed, and nice.
That's it. Not fast, but working.
I found solution for it. It is not fast, and required Flash Player 11.6. Every MovieClip
graphics properties has a new readGraphicsData
function, which give all the graphics commands (Vector IGraphicsData
) to draw the whole MC. And iterate in these commands, if I change every bitmapFill
command smooth
parameter to true, and redraw the MC, it will be smoothed, and nice.
That's it. Not fast, but working.