After extensive testing and research, I seem to be at a loss for finding the solution...
I am facing an issue with my Flex 4.5 mobile app where I'm attempting to change the backgroundColor to black, specifically 0x000000 during runtime.
Strangely enough, despite setting the color code as black, it always displays any other color except black.
Here is the snippet of code I am using:
application.setStyle( "backgroundColor", 0x000000 /* Any color, like 0x0000ff works, just not 0x000000 */ );
Has anyone encountered this problem before???
Additionally, just for reference, I have initially set the Application's backgroundColor to #333333 in both a .css file and within the MXML Application node.