Avatar

Jamie Villeneuve

  • Total activity 403
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 1 user
  • Votes 1
  • Subscriptions 191

Articles

Recent activity by Jamie Villeneuve
  • sb.SCRIPT_ROOT

    sb.SCRIPT_ROOT This is a variable that is filled in by the Storyboard Engine to contain the path to the application project's scripts directory. The sb.SCRIPT_ROOT variable provides a convenient w...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • sb.sendEvent

    sb.sendEvent(event, [channel]) Send an event to the application or to a Storyboard IO channel. channel is an optional parameter and if channel is not passed then the channel will be chosen as foll...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • VIDEO: Video Render Extension

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • sb.setControlAttrs

    sb.setControlAttrs(controlName, tagObject) Set properties for a control. The controlName is the name of the control or a variable. The tagObject contains the tags and values for the properties to ...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • sb.setData

    sb.setData(object) Sets one or more items in the Storyboard application's data manager.  Each key and value in the object passed in will be set in the data manager using the key name as the key. P...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • sb.setGroupAttrs

    sb.setGroupAttrs(groupName, tagObject) Set properties for a group. The groupName is the name of the group or a variable. The tagObject contains the tags and values for the properties to set. x y h...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • sb.setLayerAttrs

    sb.setLayerAttrs(layerName, tagObject) Set properties for a layer instance associated with a particular screen. The layerName specifies either the fully qualified name of a layer instance using th...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • gre.add_data_listener

    gre.add_data_listener( key, callback ) Add a data change listener. When the specified variable changes in the data manager, the provided callback function will be executed. Parameters: ...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes
  • sb.setLayerAttrsGlobal

    sb.setLayerAttrsGlobal(layerName, tagObject) Set properties for a layer globally on all instances of the layer on all screens. The layerName is the name of the layer. The tagObject contains the ta...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • gre.remove_data_listener

    gre.remove_data_listener( listener ) Remove a previously added data listener Parameters: listener An id previously returned from gre.add_data_listener(). Example: local var_...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes