Wiki

Clone wiki

Adobe Air Plugin / onManagedConsentCompletion

Overview

Notifies that consent dialog is closed.

Syntax

onManagedConsentCompletion(event:AATKitEvent):void
event (required)

AATKitEvent. Event object.

returns void.

Examples

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

    .
    .
    .

aatkit.addEventListener(AATKitEvent.MANAGEDCONSENTCOMPLETION, onManagedConsentCompletion);

function onManagedConsentCompletion(event:AATKitEvent):void
{
    trace("onManagedConsentCompletion");
}

Updated