-
Notifications
You must be signed in to change notification settings - Fork 63
Users guide
How to get started with flex-iframe and use it in your project.
There are several ways to get the Flex-Iframe swc.
You can find the last version of the library swc on Maven Central repository.
If you use Flex/Flash builder, just drop it in the project libs
directory.
Flex-IFrame artifacts are deployed in Maven Central repository. All you have to do is to add a dependency:
<dependency>
<groupId>com.google.code.flex-iframe</groupId>
<artifactId>flex-iframe</artifactId>
<version>1.5.1</version>
</dependency>
If you just cannot wait for a release, you can follow the Developers guide instructions.
Important ! To use flex-iframe, you must add the parameter wmode="opaque"
to the embed in your HTML template, as shown in this example. For more information about this prerequisite, read the FAQ.
Here is an example of use in MXML:
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:flexiframe="http://code.google.com/p/flex-iframe/">
<flexiframe:IFrame id="googleIFrame"
label="Google"
source="http://www.google.com"
width="80%"
height="80%"/>
<mx:Application>
You can create IFrames in ActionScript too by importing the IFrame class:
import com.google.code.flexiframe.IFrame;
You can find several example usages here, and the examples source and binary packages here.