Hello -
I am attempting to work with the DENG modular browser in openlaszlo. I
have the working code from the DENG developer that implements DENG
inside openlaszlo:
//////////////////// Code snippet
/////////////////////////////////////////////////////////////////////
<view id="control" width="600" height="100">
<button text="Load Doc"
onclick="deng_view.loadDoc(canvas.contentURL.toString());" />
</view>
<view id="deng_view" width="600" height="560" resource="denglaszlo.swf"
>
<method name="loadDoc" args="uri" >
<![CDATA[
var deng = deng_view.getMCRef().deng;
var res = canvas.gateway.toString() + '?guid=';
deng.setProxyScript("http://localhost/php/proxy.php?url=");
deng.setDocumentUri(uri);
deng.render();
]]>
</method>
</view>
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
My problem is that I want to cause the external document to load into
DENG automatically (without the user clicking the "load doc" button). I
have tried it this way:
<view id="deng_view" width="600" height="560" resource="denglaszlo.swf"
oninit="loadDoc()">
But the debugger says: reference to undefined property 'deng'
How can I cause the loadDoc method to run immediately without user
action?
Matt Hubbard
_______________________________________________
Laszlo-user mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-user