May 17
Transparent Flex app click-through solution

In my project I had situation that I need to load flex transparent flex application and to haveposssibility to click through this applicatio
I was trying to set backgroundAlpha to zero, but it doesn’t help me because application container overlap object under this application
here is a trick
on application create complete:

private function creationCompleteHandler():void
{
rawChildren.removeChildAt(0);
}

it will removes displayObject in application which overlaps objects under flex app