Zydecode Studio

Archive for the 'Lingo' Category

parsing name=value pairs from a URL in Director

Sunday, October 16th, 2005

on exitFrame
if ImDone true then
global gNetID
gNetID = getNetText(”http://cnet/freestyle/read.php?id=sean”)
end if
end
—————————————————————-
on exitFrame
global gNetID
if netDone (gNetID) then
if netError(gNetID) “OK” then
alert “couldn’t get the text ” & netError(gNetID)
halt
end if
set theFullText = netTextResult(gNetID)
sendSprite(1, #processURLs, theFullText)
[...]