Reputation: 1
i've a MovieClip and i would like to change the transparency of this movieclip how can i do? Thx.
Upvotes: 0
Views: 2443
Reputation: 1039
Using the _alpha property should do it. 0 = completely transparent, and 100 = opaque.
name_MC._alpha = 50;
Upvotes: 2