Skip to content
This repository has been archived by the owner on Mar 23, 2019. It is now read-only.

Users guide

nicoulaj edited this page May 7, 2011 · 12 revisions

Users guide

How to get started with flex-iframe and use it in your project.

Import Flex-IFrame swc in your project

There are several ways to get the Flex-Iframe swc.

Directly downloading Flex-IFrame swc

You can find the last version of the library on the downloads page.

If you use Flex/Flash builder, just drop it in the project libs directory.

Using Maven

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.4.6</version>
</dependency>

Building Flex-IFrame from sources

If you just cannot wait for a release, you can follow the Developers guide instructions.

Use Flex-IFrame in your project

Change the wmode

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.

Create an IFrame

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 build packages here.

Clone this wiki locally