Versions Compared

Key

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

...

Code Block
javascript
javascript

var win = getObj("window1");  // obtain reference to the first window if present
if (win != null) {
  var textbox = getWindowObj('I_5_10', win);  // obtain a reference to an element within the window
}

...