Dynamically Setting FLVPlayback Skin to None

Cost me time, solution:

If your creating the FLVPlayback dynamically using ActionScript and want to set the skin to none the component is expecting a String. So in the component inspector your select none so I assumed “none” in my code would work… nah, got to set it to null.

1
my_flvplayback.skin = null;

Comments