views:

44

answers:

1

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?

A: 

NativeWindow is not a Flex container.

Use spark.components.Window or mx.core.Window - they allow BorderContainer, Group amd Image to be added (do not forget to use window.addElement() method).

Maxim Kachurovskiy
Thank you very much for your exact answer. It really helps me.
Jason