Web widget URL to interact with

Is it possible to expose the URL of a web widget for the student to interact with?

Hi,

You can use a text box and the following script in its On Complete event:

var frameNode = prez.object('Web Object_21').frameNode;
frameNode.removeAttribute('srcdoc');
frameNode.src = this.text();

Sample project: web browser.approj (208 KB)

Regards