如何导入flex iframe组件?
How import flex iframe component?
我正在尝试导入 flex 组件,但无法正常工作。
mxml 导入:
Pom:
我只需要导入组件即可使用
<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 组件,但无法正常工作。
mxml 导入:
Pom:
我只需要导入组件即可使用
<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>