如何导入Flex iframe组件?

时间:2019-04-04 14:42:19

标签: flex actionscript mxml

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

mxml导入:

enter image description here

Pom:

enter image description here

我只需要导入组件即可使用

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

2 个答案:

答案 0 :(得分:2)

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

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

看起来导入部分的值也不正确,应该为com.google.code.flexiframe.IFrame而不是com.google.com ...只有在ActionScript代码中使用它时,才需要使用它。

答案 1 :(得分:1)

我只输入swc即可正常工作。

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