actionscript 3 - How to Make Stage transparent in Action script 3 (Adobe flash professional) -
i making text animation in as3, added in movie clip. want transparent stage. there way make stage transparent. if possible describe in detail. in advance>>
to set wmode
parameter transparent
. check flash object's html code.
<object classid="00" width="600" height="450"> <param name="quality" value="high"> <param name="wmode" value="direct" > // change ...
to this:
<param name="wmode" value="transparent" >
setting bg colour of flash file ignored if set wmode transparent. if run .swf inside player externally background color shown.
Comments
Post a Comment