Important note (pre Y2K): this project does not work with the Windows PC 1999 SuperCard plug-in. I believe the Macintosh version is still OK.
load URL "Color/healing/eggName.txt" load URL "Color/healing/39images/hiRsrczT.gif" with callback "alldone" // Last of the graphics // See handler 'alldone' in the card script set cursor to busy set the text of fld "allNames" to URL "Color/healing/eggName.txt" hide button "loader" set cursor to hand put line 41 of fld "allNames" into cd field "theName"
on alldone
repeat with n = 1 to 10
get urlStatus("Color/healing/39images/hiRsrczT.gif")
if it is "cached" then
put line 41 of fld "allNames" into cd field "theName"
exit repeat
else "beep"
end if
end repeat
end alldone
unload URL "Color/healing/eggNames.txt"