Can anyone post an example or post a link to information using Flex Components in a NativeWindow?
I'm using Flex to open a NativeWindow but I would like to use Flex components inside of that newly opened NativeWindow. So far I've only been able to add non-Flex UIComponents by adding them to NativeWindow's stage property. var myTextField:TextField=new TextField(); //Can't use TextArea from Flex Framework myTextField.text="Some dummy text"; nativeWindow.stage.addChild(myTextField); -- Keith H -- keith-hair.com

