Wiki

Clone wiki

Adobe Air Plugin / removePlacementFromView

Overview

Removes placement with given name from view and stops autoreload for that placement.

Syntax

removePlacementFromView(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().removePlacementFromView("BannerPlacement");

Updated