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

    canvas.strokeArc(x, y, radius_x, radius_y, start, end, rotation, color) Draw a stroked arc defined by the center position (x,y), with x radius radius_x, y radius radius_y, start and end angles (st...

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

    sb.cloneObject(referenceObjectName, newObjectName, parentName, data) Create a new control, table or group (newObjectName) within an existing parent (parentName) by copying all of the properties of...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Running Validator Tests from the Command Line using Storyboard

    Tests can be run from the command line by adding the following engine options: -ovalidator,enable,draw,sbio_in=<channel>,sbio_out=<channel> -ocapture_playback,mode=playback_block,file=<path to tes...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Validator Test Report

    A test report can be generated for a specific test run so that it can be shared as either a PDF or an HTML file. To generate the report from the command line, the path to the test run name. Window...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes
  • canvas.strokeCircle

    canvas.strokeCircle(x, y, radius, color) Draw a stroked circle defined by the center position (x,y), with radius radius, and with the color color. Parameters: x The x position of ...

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

    sb.deleteObject(objectName) Delete an object that has been cloned using sb.cloneObject from the model. The object must be a control, a table, or a group. Parameters: objectName The fully q...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • canvas.strokePoly

    canvas.strokePoly(xarray, yarray, color) or canvas.strokePoly(xyarray, color) Stroke a polygon through the points defined in xytable with a specific color. The width of the line is the last value ...

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

    sb.env("string_key"[,"string_key2, "string_key3"]) Return information about the Storyboard runtime environment. The input is one or more strings that match the key to look up. The following table ...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • canvas.strokeRect

    canvas.strokeRect(x1, y1, x2, y2, color) Stroke a rectangle outline defined by the bounding area of x1,y2 to x2,y2 with a specific color. The width of the outline is the last value set to canvas.l...

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

    sb.getControlAttrs(controlName, tags ...) Get properties for a control. Key name is the name of the control or a variable. Tags can be a list of the following values: x, y, width, height, hidden, ...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes