Packageadobe.utils
Classpublic final class CustomActions
InheritanceCustomActions Inheritance Object

The methods of the CustomActions class allow a SWF file playing in the Flash authoring tool to manage any custom actions that are registered with the authoring tool. A SWF file can install and uninstall custom actions, retrieve the XML definition of a custom action, and retrieve the list of registered custom actions.

You can use these methods to build SWF files that are extensions of the Flash authoring tool. Such an extension could, for example, use the Flash Application Protocol to navigate a Universal Description, Discovery and Integration (UDDI) repository and download web services into the Actions toolbox.



Public Properties
Hide Inherited Public Properties
Show Inherited Public Properties
 PropertyDefined by
  actionsList : Array
[static][read-only] Returns an Array object containing the names of all the custom actions that are registered with the Flash authoring tool.
CustomActions
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Public Methods
Hide Inherited Public Methods
Show Inherited Public Methods
 FunctionDefined by
  
[static] Reads the contents of the custom action XML definition file named name.
CustomActions
 Inherited
Indicates whether an object has a specified property defined.
Object
  
[static] Installs a new custom action XML definition file indicated by the name parameter.
CustomActions
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
  
[static] Removes the Custom Actions XML definition file named name.
CustomActions
 Inherited
Returns the primitive value of the specified object.
Object
Property detail
actionsList property
actionsList:Array  [read-only]

Returns an Array object containing the names of all the custom actions that are registered with the Flash authoring tool. The elements of the array are simple names, without the .xml file extension, and without any directory separators (for example, ":", "/", or "\"). If there are no registered custom actions, actionsList() returns a zero-length array. If an error occurs, actionsList() returns the value undefined.

Implementation
    public static function get actionsList():Array
Method detail
getActions method

public static function getActions(name:String):String

Reads the contents of the custom action XML definition file named name.

The name of the definition file must be a simple filename, without the .xml file extension, and without any directory separators (':', '/' or '\').

If the definition file specified by the name cannot be found, a value of undefined is returned. If the custom action XML definition specified by the name parameter is located, it is read in its entirety and returned as a string.

Parameters
name:String — The name of the custom action definition to retrieve.

Returns
String — If the custom action XML definition is located, returns a string; otherwise, returns undefined.
installActions method

public static function installActions(name:String, data:String):void

Installs a new custom action XML definition file indicated by the name parameter. The contents of the file is specified by the string data.

The name of the definition file must be a simple filename, without the .xml file extension, and without any directory separators (':', '/' or '\').

If a custom actions file already exists with the name name, it is overwritten.

If the Configuration/ActionsPanel/CustomActions directory does not exist when this method is invoked, the directory is created.

Parameters
name:String — The name of the custom action definition to install.
data:String — The text of the XML definition to install.
uninstallActions method

public static function uninstallActions(name:String):void

Removes the Custom Actions XML definition file named name.

The name of the definition file must be a simple filename, without the .xml file extension, and without any directory separators (':', '/' or '\').

Parameters
name:String — The name of the custom action definition to uninstall.

See also
installActions()




 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/labs/flashauthoringpreview/adobe/utils/CustomActions.html