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.getTableCellAttrs

    sb.getTableCellAttrs(tableName, row, col, tags ...) Get properties for a table cell. table_name is the name of the table. Tags can be a list of the following values: x y width height hidden A JS o...

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

    sb.getValue(key[, key2, ...]) Get the value of a variable from the data manager. A nil is returned for any values that do not match a key in the data manager. Parameters: key The key w...

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

    sb.greioDisconnect(channel, [isReceiveChannel]) This function forces any cached Storyboard IO channel connections to the specified channel to be closed. Subsequent calls using the same channel nam...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • VIDEO: Remote Launch

    0:08 Introduction 0:20 Simulate locally on a development system 0:50 Remote launch configuration 1:45 Terminate running target application 2:20 Required information for target conn...

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

    sb.polyString(x_values, y_values) or sb.polyString({{x:, y:}, ...}) This is a higher performance function for generating a polygon string based on a set of numeric data points maintained in JS arr...

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

    sb.quit([channel]) Send QUIT event to application to force shutdown. channel is an optional parameter. Parameters: channel An optional Storyboard IO channel to send the event on, if no...

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

    sb.receiveEvent(channel) Receive an event from a Storyboard IO channel. This is a blocking call so the UI may become unresponsive when used if it takes a while for the event to be received. Parame...

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

    sb.redraw(x, y, width, height, [channel]) Force a screen redraw. channel is an optional parameter. Specifying a x,y,width,height of 0 will result in a full screen refresh occurring. Parameters: ...

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

    sb.removeEventListener(id) Remove an event listener created with sb.addEventListener. Parameters: id An identifier returned from sb.addEventListener Example: function cbRedraw(context...

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

    sb.resolveDataKey(key1 [, key2, ...]) This function allows JS scripts to resolve Storyboard context variables to a fully qualified name based on the current execution context. Parameters: key1...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes