Wiki

Clone wiki

Adobe Air Plugin / addPlacementToView

Overview

Adds placement with given name to view and reeanbles placement autoreload if was set before. There is no need to call this after CreatePlacement(placementName, placementSize).

Syntax

addPlacementToView(placementName:String)
placementName (required)

String. Unique name of placement. The same name will be used in addapptr.com account.

returns void.

Examples

#!ActionScript
import com.intentsoftware.adobe.aatkit.AATKitExtension;

.
.
.

AATKitExtension.getInstance().addPlacementToView("BannerPlacement");

Updated