Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Include the brightsign_js_objects_enabled:true entry with the associative array that is passed during creation of the roHtmlWidget instance:

Example:

Code Block
r=createobject("rorectangle",0,0,1920,1080)
aa=createobject("roassociativearray")

aa.url="http://test-server/index.html"
aa.brightsign_js_objects_enabled=true

bb=createobject("roassociativearray")
bb.port=3000
aa.inspector_server=bb

h=createobject("rohtmlwidget",r,aa)
h.show()

...