Wiki

Clone wiki

Adobe Air Plugin / managedConsentCMPFailedToLoad

Overview

Notifies that the used CMP failed to load.

Syntax

managedConsentCMPFinished(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.MANAGEDCONSENTCMPFAILEDTOLOAD, managedConsentCMPFailedToLoad);

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

Updated