actionscript 3 - Change BorderContainer background color with AS - Flex 4 -
i'm trying change background color , or text color of bordercontainer in flex 4 using action script, have not idea how to.
the border container component doesn't seem have properties like:
idname.color = "#333333"; idname.backgroundcolor = "#333333";
how might go doing this?
thanks!
you can set styles (which different properties) in actionscript so:
idname.setstyle("backgroundcolor", 0xff0000);
Comments
Post a Comment