Package | com.adobe.indesign |
Class | public class ScriptPreference |
Inheritance | ScriptPreference ![]() ![]() ![]() |
Since : | CS5 |
Property | Defined By | ||
---|---|---|---|
enableRedraw : Boolean
If true, enables redraw during script execution. | ScriptPreference | ||
eventListeners : EventListeners [override] [read-only]
A collection of event listeners. | ScriptPreference | ||
events : Events [override] [read-only]
A collection of events. | ScriptPreference | ||
![]() | hostObjectDelegate : HostObject Getter for the delegate | CSHostObject | |
isValid : Boolean [override] [read-only]
Returns true if the object specifier resolves to valid objects. | ScriptPreference | ||
measurementUnit : Object
The measurement unit used during script processing. | ScriptPreference | ||
parent : Object [override] [read-only]
The parent of the ScriptPreference (a Application). | ScriptPreference | ||
properties : Object [override]
A property that allows setting of several properties at the same time. | ScriptPreference | ||
scriptsFolder : File [read-only]
The path to the Scripts folder for the application. | ScriptPreference | ||
scriptsList : Object [read-only]
A list of the scripts in the Scripts folder. | ScriptPreference | ||
userInteractionLevel : UserInteractionLevels
Controls the display of dialogs and alerts during script processing. | ScriptPreference | ||
version : String
The version of the scripting environment. | ScriptPreference |
Method | Defined By | ||
---|---|---|---|
![]() | addEventListenerPreference(eventTypeParam:String = null, handlerParam:Object = null, capturesParam:Boolean = false):EventListener
Adds an event listener. | Preference | |
addEventListenerScriptPreference(eventTypeParam:String = null, handlerParam:Object = null, capturesParam:Boolean = false):EventListener
Adds an event listener. | ScriptPreference | ||
![]() | filterArgsForHBAPI(args:Array):Array [static]
Function to clean up the argument list and put it into a format that
makes sense for HBAPI. | CSHostObject | |
![]() | filterSingleObjectForHBAPI(value:Object):Object [static]
| CSHostObject | |
![]() | getClassObjectForName(className:String):HostObject [static] This returns a "Class" object, meaning, a HostObject that can be used
to make static function calls or get static properties
| CSHostObject | |
getElements():Object [override]
Resolves the object specifier, creating an array of object references. | ScriptPreference | ||
![]() | getSpecialTranslation(className:String, ho:HostObject, expectedReturnType:Class, ownerName:String):* [static] | CSHostObject | |
![]() | hostCall(name:String, expectedReturnType:Class, rawargs:Array):*
Encapsulates a function call to the host
| CSHostObject | |
![]() | hostCallStatic(className:String, methodName:String, expectedReturnType:Class, rawargs:Array):* [static]
Implements a safe call of a static method on the host
| CSHostObject | |
![]() | hostGet(name:String, expectedReturnType:Class):*
Encapsulates a property get to the host
| CSHostObject | |
![]() | hostGetIndex(idx:Object, expectedReturnType:Class):*
Encapsulates a indexed get to the host
| CSHostObject | |
![]() | hostGetStatic(className:String, propertyName:String, expectedReturnType:Class):* [static]
Implements a safe get of a static property on the host
Used by for instance, all the enum implementations. | CSHostObject | |
![]() | hostSet(name:String, rawvalue:*):void
Encapsulates a property set to the host
| CSHostObject | |
![]() | hostSetStatic(className:String, propertyName:String, rawvalue:*):* [static]
Implements a safe set of a static property on the host
| CSHostObject | |
![]() | isDescendedFrom(clz:Class, ancClass:Class):Boolean [static] Efficiently determines whether or not one class descends from
another in inheritance hierarchy- class relationships are cached
by the ClassUtils implementation-
(uses org.as3commons lib to quickly discover class hierarchy. | CSHostObject | |
![]() | removeEventListenerPreference(eventTypeParam:String = null, handlerParam:Object = null, capturesParam:Boolean = false):Boolean
Removes the event listener. | Preference | |
removeEventListenerScriptPreference(eventTypeParam:String = null, handlerParam:Object = null, capturesParam:Boolean = false):Boolean
Removes the event listener. | ScriptPreference | ||
![]() | replaceDefaultArgs(args:Array, defaultArgs:Array):Array
Function to tidy up arguments prior to call. | CSHostObject | |
toSpecifier():String [override]
Retrieves the object specifier. | ScriptPreference | ||
![]() | wrapReturnedHostObject(rawObject:Object, expectedReturnType:Class, client:CSHostObject, propertyName:String):* [static]
Method used on static/normal get/ hostcalls
| CSHostObject |
enableRedraw | property |
enableRedraw:Boolean
Since : | CS5 |
If true, enables redraw during script execution.
public function get enableRedraw():Boolean
public function set enableRedraw(value:Boolean):void
eventListeners | property |
eventListeners:EventListeners
[read-only] [override] Since : | CS5 |
A collection of event listeners.
public function get eventListeners():EventListeners
events | property |
events:Events
[read-only] [override] Since : | CS5 |
A collection of events.
public function get events():Events
isValid | property |
isValid:Boolean
[read-only] [override] Since : | CS5 |
Returns true if the object specifier resolves to valid objects.
public function get isValid():Boolean
measurementUnit | property |
measurementUnit:Object
Since : | CS5 |
The measurement unit used during script processing. Can return: AutoEnum enumerator or MeasurementUnits enumerator.
public function get measurementUnit():Object
public function set measurementUnit(value:Object):void
parent | property |
parent:Object
[read-only] [override] Since : | CS5 |
The parent of the ScriptPreference (a Application).
public function get parent():Object
properties | property |
properties:Object
[override] Since : | CS5 |
A property that allows setting of several properties at the same time.
public function get properties():Object
public function set properties(value:Object):void
scriptsFolder | property |
scriptsFolder:File
[read-only] Since : | CS5 |
The path to the Scripts folder for the application.
public function get scriptsFolder():File
scriptsList | property |
scriptsList:Object
[read-only] Since : | CS5 |
A list of the scripts in the Scripts folder. Can return: Array of Array of 2 Strings or Files.
public function get scriptsList():Object
userInteractionLevel | property |
userInteractionLevel:UserInteractionLevels
Since : | CS5 |
Controls the display of dialogs and alerts during script processing.
public function get userInteractionLevel():UserInteractionLevels
public function set userInteractionLevel(value:UserInteractionLevels):void
version | property |
version:String
Since : | CS5 |
The version of the scripting environment. Can also accept: Real.
public function get version():String
public function set version(value:String):void
addEventListenerScriptPreference | () | method |
public function addEventListenerScriptPreference(eventTypeParam:String = null, handlerParam:Object = null, capturesParam:Boolean = false):EventListener
Since : | CS5 |
Adds an event listener.
Parameters
eventTypeParam:String (default = null ) — (String) The event type.
| |
handlerParam:Object (default = null ) — (Object) The event handler. Can accept: File or JavaScript Function.
| |
capturesParam:Boolean (default = false ) — (Boolean) This parameter is obsolete. (Optional)
|
EventListener |
getElements | () | method |
override public function getElements():Object
Since : | CS5 |
Resolves the object specifier, creating an array of object references.
ReturnsObject |
removeEventListenerScriptPreference | () | method |
public function removeEventListenerScriptPreference(eventTypeParam:String = null, handlerParam:Object = null, capturesParam:Boolean = false):Boolean
Since : | CS5 |
Removes the event listener.
Parameters
eventTypeParam:String (default = null ) — (String) The registered event type.
| |
handlerParam:Object (default = null ) — (Object) The registered event handler. Can accept: File or JavaScript Function.
| |
capturesParam:Boolean (default = false ) — (Boolean) This parameter is obsolete. (Optional)
|
Boolean |
toSpecifier | () | method |
override public function toSpecifier():String
Since : | CS5 |
Retrieves the object specifier.
ReturnsString |