EnTerr
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2016
07:05 PM
Re: Check Network Connection before connecting Alert Box hel
I was thinking something along the lines of
Above i trust that when failing a fetch, .getToString() returns empty string regardless of reason. Alternatively, one can
xfer = CreateObject("roUrlTransfer")
xfer.setURL("http://360abyss.com/")
if xfer.getToString() = "" then
' do something, like diagnostic popup that server cannot be contacted
end if
Above i trust that when failing a fetch, .getToString() returns empty string regardless of reason. Alternatively, one can
'accept only HTTP 200 OK
if xfer.getToFile("tmp:/junk") <> 200
'or check if the content contains a desired substring (in this case "360abyss.com" is inside many href='s)
if xfer.getToString().inStr(0, "360abyss.com") < 0 then
donavonc
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2016
09:27 PM
Re: Check Network Connection before connecting Alert Box hel
Thanks everyone . it worked. 🙂
- « Previous
-
- 1
- 2
- Next »