Hi,
I'm using the import to load a libraries from the server at the runtime, I
discovered that the ontimeout and onerror events are not working, the code
is like this:
<button text="dooo">
<handler name="onclick">
canvas.imLib.load()
</handler>
</button>
<import name="imLib" href="library.lzx" stage="defer">
<handler name="onload">
Debug.write("Loading...");
</handler>
<handler name="onerror">
Debug.write("onerror...");
</handler>
<handler name="ontimeout">
Debug.write("ontimeout...");
</handler>
</import>
The onload event is working but the ontimeout and onerror is not working, If
I disconect the internet connection, then the client doesn't firing the
ontimeout event that is existing in the import according to the
documentation.
Thanks in advance
--
Best Regards
Rami