Interactive ElementsNavigationPoint

A navigation point.

Instance Properties

Name Description Access
eventListeners EventListeners A collection of event listeners. read-only
events Events A collection of events. read-only
id number Unique internally-generated identifier (read only). read-only
index number The index of the NavigationPoint within its containing object. read-only
isValid bool Returns true if the object specifier resolves to valid objects. read-only
name string The UI display name. read-write
parent Movie The parent of the NavigationPoint (a Movie). read-only
properties Object A property that allows setting of several properties at the same time. read-write
time number The time in seconds rounded up to two decimal places (e.g., 3.115 rounded to 3.12). read-write

Methods

addEventListener(
eventType, handler ​[, captures])
 → EventListener
remove(
)
removeEventListener(
eventType, handler ​[, captures])
 → bool
toSource(
)
 → string
toSpecifier(
)
 → string
addEventListener(
eventType, handler ​[, captures=false])
 → EventListener
Adds an event listener.
eventType string The event type.
handler The event handler. Can accept: File or JavaScript Function.
captures bool This parameter is obsolete. (Optional)
getElements(
)
 → NavigationPoint
Resolves the object specifier, creating an array of object references.
remove(
)
Deletes the NavigationPoint.
removeEventListener(
eventType, handler ​[, captures=false])
 → bool
Removes the event listener.
eventType string The registered event type.
handler The registered event handler. Can accept: File or JavaScript Function.
captures bool This parameter is obsolete. (Optional)
toSource(
)
 → string
Generates a string which, if executed, will return the NavigationPoint.
toSpecifier(
)
 → string
Retrieves the object specifier.