Hi Brandon
It looks like there is an issue with your XML and that the opening quote may have been deleted. I should also point-out that we have since added the ability to set the URL through ogScript so the method mentioned in this thread is a bit out of date. You can now use ogscript.getComponentsById('ID_OF_YOUR_BROWSER_TAG')[0].setUrl('URL_OF_WEB_PAGE');
Here is an example Custom Panel that demonstrates the updated technique:
<abs contexttype="opengear" style="">
<meta>
<params>
<param access="1" maxlength="0" name="URL" oid="URL" type="STRING" value="http://www.google.ca" widget="text"/>
</params>
</meta>
<browser bottom="5" id="browser" left="5" right="5" top="50" url="%value['URL'][0]%"/>
<param expand="true" height="36" left="6" oid="URL" right="101" top="5"/>
<button buttontype="push" height="41" name="GO!" right="5" top="3" width="93">
<task tasktype="ogscript">ogscript.getComponentsById('browser')[0].setUrl(params.getValue('URL', 0));</task>
</button>
</abs>
Cheers
James
#DashBoard