How to set skin at runtime in Flex 4
Asked Answered
M

1

5

I have a bunch of custom controls based on a SkinnableContainer.

When adding the control at design time, I can specify a skin by using the skinClass attribute on the tag.

I need to add some of these elements during runtime, and I can't figure out how to specify the skinClass for my controls.

eg.

var something:CustomThing = new CustomThing();

/* mistery code here to attach the skin ? */

addElement(something);

How do I do this?

Thanks!

Measures answered 12/5, 2010 at 6:52 Comment(0)
M
20

mmmmm, found it actually.. have to set a style..

something.setStyle("skinClass", MySomethingSkinClass);
Measures answered 12/5, 2010 at 7:9 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.