I have many single frame movieclips on stage.
some of them are drawn using vector shapes in flash.
some of them are bitmaps loaded from an external .png file. note that in this case the display objects are of type shape, not of type bitmap.
I would like to export the movieclips containing vector shapes to svg documents. and the movieclips with bitmaps to bitmapData.
the problem is I am unable to differentiate between the 2 in actionscript.
I have only had success when converting the shape into Bitmap type with AS Linkage. however, this is not ideal as we would have to inspect all movieclips manually. Is there a way to differentiate between a shape that is vector and a shape that is bitmap?