Wiki

Clone wiki

Adobe Air Plugin / startPlacementAutoReloadWithSeconds

Overview

Enables automatic reloading of placement and sets custom reload time. This reload time will be used instead of time configured on addapptr.com account.

Syntax

startPlacementAutoReloadWithSeconds(placementName:String, seconds:int)
placementName (required)

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

seconds (required)

[int][]. Interval between ad reloads. Should be a value from 30L to 600L seconds.

returns void.

Examples

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

.
.
.

AATKitExtension.getInstance().startPlacementAutoReloadWithSeconds("BannerPlacement", 100);

Updated