An object that represents a loaded javascript object and its global context.
This object is already loaded in memory and is persistent as long as the Python object exists.
A Simple Example - Creating a Python-JS Interface
from ToonBoom import harmony
sess = harmony.session()
js = sess.javascript
js_string = """
function frame_next()
{
frame.setCurrent( frame.current()+1 );
}
function frame_last()
{
frame.setCurrent( frame.current()-1 );
}
function frame_set( target_frame )
{
frame.setCurrent( target_frame );
}
function frame_current()
{
return frame.current();
}
"""
frame_helper = js.load_string( js_string )
frame_helper["frame_next"].call()
print( "Now on frame: %s"%( frame_helper["frame_current"].call() ) )
frame_helper["frame_last"].call()
print( "Now on frame: %s"%( frame_helper["frame_current"].call() ) )
frame_helper["frame_set"].call( [10] )
print( "Now on frame: %s"%( frame_helper["frame_current"].call() ) )
Javascript Object can be Incrementally Extended
from ToonBoom import harmony
sess = harmony.session()
js = sess.javascript
js_string = """
function testFunction()
{
MessageLog.trace( initiallyMissingVariable );
}
"""
js_obj = js.load_string( js_string )
try:
js_obj["testFunction"].call()
except:
print( "Variable is missing -- as expected." )
print( "Adding missing variable" )
js_obj["initiallyMissingVariable"] = "No longer missing"
js_obj["testFunction"].call()
|
virtual bool | contains (const QVariant &propName) const override |
| Checks the if the object contains a given property at key or at value if the object is an array. More...
|
|
virtual void | remove (const QVariant &propValue) const |
| Removes a property from the object at key or at value if the object is an array. For removing at index on arrays, use pop() method instead.
|
|
virtual QVariant | pop (int propIdx) const |
| Pops a property from the array object at index. More...
|
|
virtual void | insert (int propIdx, const QVariant &propValue) const |
| Inserts a property in the middle of arrays.
|
|
virtual void | clear () const |
| Clears the object of any property.
|
|
virtual void | append (const QVariant &propValue) const |
| Appends a property to the end of an array.
|
|
QVariant | call (const QVariant &arguments=QVariant(), const QVariant &selfValue=QVariant()) |
| Calls the javascript function with the provided arguments and an object representing the object bound to the self at the function's execution. More...
|
|