The LiveAPI Object
The LiveAPI object provides a means of communicating with the Live API functions from JavaScript. For background information on this functionality, please see the Live API Overview and Live Object Model documents, as well as the Reference pages for live.path, live.object and live.observer objects, which provide the same basic functionality as the LiveAPI object, but from the Max patcher.
LiveAPI Constructor
api = new LiveAPI([callback], [path] / [id])
is an optional JavaScript function. This function will be called when the LiveAPI object refers to a new object in Live (if the LiveAPI object's path change, for instance), or when an observed property changes. refers to the object in Live "pointed to" by the LiveAPI object (e.g. "live_set tracks 0 devices 0"). Alternately, a valid can be used to refer a LiveAPI object to an object in Live.
Technical note: you cannot use the LiveAPI object in JavaScript global code. Use the live.thisdevice object to determine when your Max Device has completely loaded (the object sends a from its left outlet when the Device is fully initialized, including the Live API).
Legacy note: previous versions of the LiveAPI object required the jsthis object's this.patcher property as the first argument. For backward-compatibility, this first argument is still supported, but is no longer necessary.
LiveAPI Properties
id [String]
The id of the Live object referred to by the LiveAPI object. These ids are dynamic and awarded in realtime from the Live application, so should not be stored and used over multiple runs of Max for Live.
path [String]
The path to the Live object referred to by the LiveAPI object. These paths are dependent on the currently open Set in Live, but are otherwise stable: live_set tracks 0 devices 0 will always refer to the first device of the first track of the open Live Set.
unquotedpath [String]
The path to the Live object referred to by the LiveAPI object, without any quoting (the
property contains a quoted path). These paths are dependent on the currently open Set in Live, but are otherwise stable: live_set tracks 0 devices 0 will always refer to the first device of the first track of the open Live Set.children [Array]
An array of children of the object at the current path.
mode [Number]
The follow mode of the LiveAPI object. 0 (default) means that LiveAPI follows the object referred to by the
, even if it is moved in the Live user interface. For instance, consider a Live Set with two tracks, "Track 1" and "Track 2", left and right respectively. If your LiveAPI object's path is live_set tracks 0, the left-most track, it will refer to "Track 1". Should the position of "Track 1" change, such that it is now to the right of "Track 2", the LiveAPI object continues to refer to "Track 1". A of 1 means that LiveAPI updates the followed object based on its location in the Live user interface. In the above example, the LiveAPI object would always refer to the left-most track, updating its when the object at that position in the user interface changes.type [String]
The type of the object at the current path. Please see the Live API Overview and Live Object Model documents for more information.
info [String]
A description of the object at the current path, including id, type, children, properties and functions.
property [String]
The observed property, child or child-list of the object at the current path, if desired. For instance, if the LiveAPI object refers to "live_set tracks 1", setting the
to "mute" would cause changes to the "mute" property of the 2nd track to be reported to the callback function defined in the LiveAPI Constructor.proptype [String]
The type of the currently observed property or child. The types of the properties and children are given in the Live Object Model.
patcher [Object]
The patcher of the LiveAPI object, as passed into the Constructor.
LiveAPI Methods
getcount
Arguments
The count of children of the object at the current path, as specified by the
argument.goto
Arguments
Navigates to the
and causes the id of the object at that path out be sent to the callback function defined in the Constructor. If there is no object at the path, id 0 is sent.get
Arguments
Returns the value or list of values of the specified
of the current object.getstring
Arguments
Returns the value or list of values of the specified
of the current object as a String object.set
Arguments
value [anything]
Sets the value or list of values of the specified
of the current object.call
Arguments
arguments [anything]
Calls the given
of the current object, optionally with a list of .Sample Code
var api = new LiveAPI(sample_callback, "live_set tracks 0")
if (!api) {
post("no api object\n")
return
}
post("api.mode", api.mode ? "follows path" : "follows object", "\n")
post("api.id is", api.id, "\n")
post("api.path is", api.path, "\n")
post("api.children are", api.children, "\n")
post('api.getcount("devices")', api.getcount("devices"), "\n")
api.property = "mute"
post("api.property is", api.property, "\n")
post("type of", api.property, "is", api.proptype, "\n")
function sample_callback(args) {
post("callback called with arguments:", args, "\n")
}
The LiveAPI Object and the Scheduler
Beginning with release 6.0 of Max, it is no longer possible to configure JavaScript functions to run in the high-priority thread of Max's scheduler. The LiveAPI object cannot be created or used in the high-priority thread, so users should be sure to use the defer or deferlow objects to re-queue messages to the js object.
See Also
Name | Description |
---|---|
JavaScript Usage | JavaScript Usage |