mApplication.getArguments()

Availability

Windows: Flash 8 or 9 AS2.0 SWF + mProjector 3.0; Windows NT Support: Flash 7 SWF + mProjector 2.0;

Macintosh: Flash 8 or 9 AS2.0 SWF + mProjector 3.0;

Usage

mApplication.getArguments() : Array

Parameters

None.

Returns

An array.; ;

Description

Method; Returns the command line arguments as an array of strings.

Example

The following example returns the command line arguments.

var Args = mApplication.getArguments();
for (var i=0; Args[i]; i++)
{
    trace(Args[i]);
}