SoundBehavior
QuickLinks
Hierarchy
Properties
Property | Type | Access | Description |
---|---|---|---|
behaviorEvent | BehaviorEvents: BehaviorEvents.MOUSE_UP BehaviorEvents.MOUSE_DOWN BehaviorEvents.MOUSE_ENTER BehaviorEvents.MOUSE_EXIT BehaviorEvents.ON_FOCUS BehaviorEvents.ON_BLUR |
readonly | The event which triggers the behavior. |
enableBehavior | bool | readonly | If true, the behavior is enabled. |
eventListeners | EventListeners | readonly | A collection of event listeners. |
events | Events | readonly | A collection of events. |
id | number | readonly | The unique ID of the SoundBehavior. |
index | number | readonly | The index of the SoundBehavior within its containing object. |
isValid | bool | readonly | Returns true if the object specifier resolves to valid objects. |
label | string | r/w | A property that can be set to any string. |
name | string | readonly | The name of the SoundBehavior. |
operation | PlayOperations: PlayOperations.PLAY PlayOperations.STOP PlayOperations.PAUSE PlayOperations.RESUME PlayOperations.STOP_ALL |
readonly | The playback mode. |
parent | Button | readonly | The parent of the SoundBehavior (a Button). |
properties | Object | r/w | A property that allows setting of several properties at the same time. |
soundItem | Sound | readonly | The sound page item. |
Methods
Instances
EventListener addEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Adds an event listener.
Parameter | Type | Description |
---|---|---|
eventType | string | The event type. |
handler | File JavaScript Function | The event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
string extractLabel (key:
string)
Gets the label value associated with the specified key.
Parameter | Type | Description |
---|---|---|
key | string | The key. |
Array
of SoundBehavior getElements ()
Resolves the object specifier, creating an array of object references.
void insertLabel (key:
string, value:
string)
Sets the label to the value associated with the specified key.
Parameter | Type | Description |
---|---|---|
key | string | The key. |
value | string | The value. |
bool removeEventListener (eventType:
string, handler:
varies[, captures:
bool=false])
Removes the event listener.
Parameter | Type | Description |
---|---|---|
eventType | string | The registered event type. |
handler | File JavaScript Function | The registered event handler. Can accept: File or JavaScript Function. |
captures | bool | This parameter is obsolete. (Optional) (default: false) |
string toSource ()
Generates a string which, if executed, will return the SoundBehavior.
Used in:
SoundBehavior SoundBehaviors.nextItem (obj: SoundBehavior)
SoundBehavior SoundBehaviors.previousItem (obj: SoundBehavior)
Return
Array of SoundBehavior SoundBehavior.getElements ()
SoundBehavior SoundBehaviors.[] (index: number)
SoundBehavior SoundBehaviors.anyItem ()
Array of SoundBehavior SoundBehaviors.everyItem ()
SoundBehavior SoundBehaviors.firstItem ()
SoundBehavior SoundBehaviors.item (index: varies)
SoundBehavior SoundBehaviors.itemByID (id: number)
SoundBehavior SoundBehaviors.itemByName (name: string)
Array of SoundBehavior SoundBehaviors.itemByRange (from: varies, to: varies)
SoundBehavior SoundBehaviors.lastItem ()
SoundBehavior SoundBehaviors.middleItem ()
SoundBehavior SoundBehaviors.nextItem (obj: SoundBehavior)
SoundBehavior SoundBehaviors.previousItem (obj: SoundBehavior)
Jongware, 23-Mar-2011 v3.0.3d | Contents :: Index |