6 messages in com.googlegroups.google-desktop-developerHow to detect when my internet connec...
FromSent OnAttachments
barm...@gmail.com30 Jan 2007 13:26 
newbee31 Jan 2007 06:46 
barm...@gmail.com01 Feb 2007 10:16 
newbee02 Feb 2007 01:56 
barm...@gmail.com03 Feb 2007 04:11 
newbee04 Feb 2007 02:53 
Subject:How to detect when my internet connection changed?
From:barm...@gmail.com (barm@gmail.com)
Date:01/30/2007 01:26:18 PM
List:com.googlegroups.google-desktop-developer

Now I can detect internet status only on start of my gadget but how I can detect status when it changed? Is there event which will help with it?

function view_onopen() { var isOnline = system.network.online;

if (isOnline) { mylabel.innerText = "You are ONLINE"; } else { mylabel.innerText = "You are OFFLINE"; }

}

Thanks.