检查 Flex 中的 UI 元素

发布于 2024-07-26 10:29:34 字数 180 浏览 3 评论 0原文

是否有任何工具可用于 Flex 应用程序,其作用类似于 Web Developer 或 Firebug 工具栏来检查 UI 元素?

基本上在 UI 控件的复杂层次结构中,允许您浏览元素并查看 x 和 y 坐标、宽度、高度、id 等属性。

我对允许您在运行时执行此操作的工具感兴趣,因为大多数属性都是动态的。

Is there any tool available for Flex applications that acts similar to Web Developer or Firebug toolbar to inspect UI elements?

Basically in a complex hierarchy of UI controls allowing you to browse the elements and see properties such as x and y coordinates, width, height, id.

I'm interested in tools that would allow you to do this at runtime, since most of the properties are dynamic.

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

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

发布评论

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

评论(3

遗失的美好 2024-08-02 10:29:34

您还可以尝试 FlexSpy。 与 De MonsterDebugger(看起来也不错)不同,您不需要安装 AIR。 它没有做那么多,但肯定允许您实时查看组件的属性(并更改其中一些)。 它很容易使用:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  ...
  <mx:Script>
    <![CDATA[
      import com.flexspy.FlexSpy;
    ]]>
  </mx:Script>
  ...
  <mx:Button id="btnFlexSpy" label="FlexSpy" click="FlexSpy.show()" />
  ...
</mx:Application>

它看起来像这样:

替代文本 http://coderpeon.ovh.org/ wp-content/110507-0844-flexspy111.png

You can also try FlexSpy. Unlike De MonsterDebugger (which looks good, too), you don't need to install AIR. It doesn't do as much, but certainly allows you to view properties of components in real-time (and to change some of them). It's easy to use:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
  ...
  <mx:Script>
    <![CDATA[
      import com.flexspy.FlexSpy;
    ]]>
  </mx:Script>
  ...
  <mx:Button id="btnFlexSpy" label="FlexSpy" click="FlexSpy.show()" />
  ...
</mx:Application>

It looks like this:

alt text http://coderpeon.ovh.org/wp-content/110507-0844-flexspy111.png

夢归不見 2024-08-02 10:29:34

我听说过有关“Kap Inspect”的好消息,但我还没有使用它亲自。 他们的网站上有一个演示。

I have heard good things about "Kap Inspect" but I have not used it personally. They have a demo on their site.

樱花落人离去 2024-08-02 10:29:34

看看 http://www.demonsterdebugger.com/

你必须添加一些额外的代码,但是它很容易做到,并为您提供丰富的信息。 可与 Flex、AIR 和 Flash 配合使用。

take a look at http://www.demonsterdebugger.com/

you will have to add some extra code but it is easy to do and gives you a wealth of information. works with Flex, AIR and Flash.

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