2

I am Making a text animation in AS3, Which will then added in a movie clip. So i want a Transparent Stage. Is there any way to make Stage Transparent. If possible then describe in detail. Thanks in Advance>>

Ankesh Kushwah
  • 161
  • 1
  • 3
  • 12

1 Answers1

0

To set the wmode parameter to transparent. Check your flash object's html code.

<object classid="00" width="600" height="450">
    <param name="quality" value="high">
    <param name="wmode" value="direct" > // change this ...

to this:

    <param name="wmode" value="transparent" >

Setting the bg colour of your flash file will be ignored if you set the wmode to transparent. If you run the .swf as inside the player externally the background color will be shown.

vbence
  • 20,084
  • 9
  • 69
  • 118
joshua
  • 676
  • 1
  • 5
  • 19