Jamie Villeneuve
Articles
-
sb.getTableAttrs
sb.getTableAttrs(tableName, tags ...) Get properties for a table. The key name is the name of the control or a variable. Tags can be any of the control tags and any of the following values: rows: ...
-
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...
-
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...
-
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...
-
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...
-
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...
-
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...
-
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...
-
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: ...
-
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...