Ace Attorney Casing Tool Documentation

The documentation for AACS and the CodeEditor.


Project maintained by MaxDeBy Hosted on GitHub Pages — Theme by mattgraham

Back to overview


DisplayPopup (DP)


Description

Displays a popup animation.

Parameters

Name Type Description Required Default Value
Popup name String The name of the popup that should be displayed. -
Looping Boolean Determines whether the popup should loop or not. false

Examples:

Example #1: Displaying the ‘Hold It!’ bubble animation.

1:  DisplayPopup:["HoldIt"];

Example #2: Displaying the ‘Testimony’ indicator and make it loop.

1:  DP:["Testimony"|true];

Remarks:

The popup will not vanish until LoadLocation has been called.


Back to overview