Reputation: 29
I'm developing Adobe Air application. To show additional window, I create NativeWindow object. In the object, "stage.addChild( Sprite Obj )" does work, but almost all other flex components do not work. Actually I want to add 'spark.components.BorderContainer', 'spark.components.Group', 'mx.controls.Image', etc., but cannot.
One solution I found is to use 'flash.html.HTMLLoader' and to display rich content (that includes images and styled text) into the window.
Is there any better way to show rich content?
Upvotes: 0
Views: 749
Reputation: 3022
NativeWindow
is not a Flex container.
Use spark.components.Window
or mx.core.Window
- they allow BorderContainer
, Group
and Image
to be added (do not forget to use window.addElement()
method).
Upvotes: 2