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

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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 -...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • 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...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes