我可以在 NativeWindow 中使用哪种 Flex 组件?
我正在开发 Adobe Air 应用程序。 为了显示附加窗口,我创建了 NativeWindow 对象。 在对象中,“stage.addChild( Sprite Obj )”确实有效,但几乎所有其他 Flex 组件都不起作用。 实际上我想添加'spark.components.BorderContainer','spark.components.Group','mx.controls.Image'等,但不能。
我发现的一种解决方案是使用“flash.html.HTMLLoader”并将丰富的内容(包括图像和样式文本)显示到窗口中。
有没有更好的方式来展示丰富的内容?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NativeWindow
不是 Flex 容器。使用
spark.components.Window
或mx.core.Window
- 它们允许BorderContainer
、Group
和要添加的图像
(不要忘记使用window.addElement()
方法)。NativeWindow
is not a Flex container.Use
spark.components.Window
ormx.core.Window
- they allowBorderContainer
,Group
andImage
to be added (do not forget to usewindow.addElement()
method).