手势事件和 StageWebView

发布于 2024-11-11 02:31:33 字数 804 浏览 6 评论 0原文

问候!我有一个 Flex 4.5 Mobile 项目正在进行中,但我遇到了一个非常疯狂的障碍。我正在使用 StageWebView 对象来渲染网页,并将其嵌入到 Spark 布局的其余部分中。我试图向包含 StageWebView 的组件添加手势事件,但由于 StageWebView 对象不属于 Flex 堆栈(它继承自 EventDispatcher,而不是 UIComponent),所以我的所有事件似乎都被吃掉了。任何基于鼠标的事件(点击、手势等)似乎都没有注册,我不知道如何解决它。如果我使用浏览器未呈现的区域,手势事件就会起作用。如何从外部 SkinnableContainer 获取手势事件?

StageWebView 参考:

http://help。 adobe.com/en_US/FlashPlatform/beta/reference/actionscript/3/flash/media/StageWebView.html

UIComponent 封装的 StageWebView:

http://soenkerohde.com/2010/11/air-mobile-stagewebview-uicomponent/谢谢

Greetings! I have a Flex 4.5 Mobile project rolling, and I've hit a pretty crazy snag. I'm using a StageWebView object to render web pages, embedded within the rest of my spark layouts. I'm trying to add a gesture event to the component that contains the StageWebView, but since the StageWebView object doesn't belong to the Flex stack (it inherits from EventDispatcher, not UIComponent) all of my events seem to be getting eaten. Any mouse based event (click, gesture, etc) doesn't seem to register, and I'm not sure how to get around it. The gesture events work if I use the area where the browser is not rendered. How can I get the gesture event from the outer SkinnableContainer?

StageWebView Reference:

http://help.adobe.com/en_US/FlashPlatform/beta/reference/actionscript/3/flash/media/StageWebView.html

UIComponent Wrapped StageWebView:

http://soenkerohde.com/2010/11/air-mobile-stagewebview-uicomponent/

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尽揽少女心 2024-11-18 02:31:33

我想您可能需要自己连接手势事件,只需在 UIComponent.as 中快速挖掘一下,它有这些:

[Event(name="touchInteractionStarting", type="mx.events.TouchInteractionEvent")]
[Event(name="touchInteractionStart", type="mx.events.TouchInteractionEvent")]
[Event(name="touchInteractionEnd", type="mx.events.TouchInteractionEvent")]

I guess you might have to wire up the gesture events yourself, just doing a quick digging in UIComponent.as, it has these:

[Event(name="touchInteractionStarting", type="mx.events.TouchInteractionEvent")]
[Event(name="touchInteractionStart", type="mx.events.TouchInteractionEvent")]
[Event(name="touchInteractionEnd", type="mx.events.TouchInteractionEvent")]
橪书 2024-11-18 02:31:33

这不是一个错误,据我了解,stagewebview 上的任何鼠标交互都意味着与当前加载的 html 本身的交互。您应该在那里捕获事件并将其触发回 swf。

当然有一些 jquery 插件或者有手势的东西可以帮助实现这一点。
不过,你不能在它们上面覆盖东西,这有点令人遗憾。

it's not a bug, from what i understand any mouse interaction over a stagewebview means an interaction with the html currently loaded in itself. you should capture events there and trigger it back to the swf.

surely there are some jquery plugins or something that have gestures to help achieving that.
it's a bit of a bummer that you cant overlay stuff over them though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文