|
|||
|
1. The IsInetConnected() method works very unstable - it sometimes returns 'false' even when the connection is present and all other net-programs are working correctly.
2. All the activity inside the flash movie stops (including animation) and the movie itself stops responding while downloading files from the internet using gtUrl() method. It makes me incapable of displaying realtime download status inside the movie while downloading files from internet version 2.0 |
|
|||
|
1. The "isInetConnected()" method determines the Internet connection state by pinging the site www.swfkit.com. You can ping any other sites instead. Or you can use the method introduced at
http://www.swfkit.com/forum/thread_1_473.html 2. Please handle the onGetUrl event Code:
var inet = new Inet;
inet.onGetUrl = function(type, msg)
{
trace(msg);
if (!processMsg()) return false;
return type;
}
inet.getUrl("http://www.swfkit.com", "c:\\1.html");
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|