Jamie Villeneuve
Articles
-
sb.setTableAttrs
sb.setTableAttrs(tableName, tagObject) Set properties for a table. The tableName is the name of the control or a variable. The tagObject contains the tags and values for the properties to set. x y...
-
sb.setTableCellAttrs
sb.setTableCellAttrs(tableName, row, col, tagObject) Set attributes for a table cell. This can only be applied for single column or single row tables and the parameters that can be modified are re...
-
sb.setTableTemplateAttrs
sb.setTableTemplateAttrs(templateName, row, col, tagObject) Set attributes for a table column template. This will result in the template being changed and the entire table being re-laid out and re...
-
sb.setValues
sb.setValues(key, value [, key2, value2, ...) Set a variable in the data manager to a particular value. Parameters: key A string value containing the key to be set with the next follow...
-
sb.setValue
sb.setValue(key, value) Set a variable in the data manager to a particular value. Parameters: key - A string value containing the key to be set with the next following value value -...
-
sb.timerClearInterval
sb.timerClearInterval(id) This function stops an existing timer from firing. Parameters: id The id representing the timer Example: var idval; function cbFunc() { print("CB FUN...
-
sb.timerClearTimeout
sb.timerClearTimeout(id) This function stops an existing timer from firing. Parameters: id The id representing the timer Example: var idval; function cbFunc() { print("CB FUNC...
-
sb.timerSetInterval
sb.timerSetInterval(function, interval) This function creates a repeating timer which fires every "interval" milliseconds and then executes "function" Parameters: function The function...
-
sb.timerSetTimeout
sb.timerSetTimeout(function, timeout) This function creates a one-shot timer that fires after "timeout" milliseconds and then executes "function" Parameters: function The function to b...
-
gre.action_trigger
gre.action_trigger(name, args) Trigger a Storyboard action by name with the provided arguments. Parameters: name: The name of the action to invoke args: A table of parameters for the action. Exam...