如何导入flex iframe组件?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何导入flex iframe组件?相关的知识,希望对你有一定的参考价值。

我正在尝试导入flex组件但不起作用。

mxml导入:

enter image description here

双响炮:

enter image description here

我只需要导入要使用的组件

 <flexiframe:IFrame id="googleIFrame"
                   label="Google"
                   source="http://www.google.com"
                   width="80%"
                   height="80%"/>
答案

如果您尝试在MXML中使用它,则需要将其添加到MXML文件中的命名空间声明中。

xmlns:flexiframe="com.google.code.flexiframe"

它看起来像你的导入部分有错误的值,它应该是com.google.code.flexiframe.IFrame而不是com.google.com ...如果它将在ActionScript代码中使用它,你只需要它。

另一答案

我只放了类型swc并正常工作。

    <dependency>
        <groupId>com.google.code.flex-iframe</groupId>
        <artifactId>flex-iframe</artifactId>
        <version>1.5.1</version>
        <type>swc</type>
    </dependency>

以上是关于如何导入flex iframe组件?的主要内容,如果未能解决你的问题,请参考以下文章

Flex IFrame 组件未呈现在可视区域之外

flex 和 iframe 之间的交互

如何在 Flash 中创建 Flex Display 组件?

iFrame 未在 Flex 弹出窗口中加载

在 Flex 中的自定义组件之间传递值 - mxml [关闭]

如何创建自定义 Flex 4 组件