I'm trying to design a poor man's spelling checker, and I'm using the script 
below. I keep getting the error "error Previous request not completed" and I 
don't know enough about internet connections to interpret what's going on. Can 
anyone help?

function checkSpelling tWord
   put 
"http://www.dict.org/bin/Dict?Query=<tWord>&Form=Dict1&Strategy=*&Database=*" 
into theURL
   replace "<tWord>" with tWord in theURL
   put url theURL into tHTML
   put the result into tErr
   if tErr <> empty then
      put "Error:" && tErr into fld "text"
   else
      put tHTML into fld "text"
   end if
   exit to top -- temporarily
   -- more code will go here, to parse the HTML
   -- return listOut
end checkSpelling

-- Peter

Peter M. Brigham
[email protected]
http://home.comcast.net/~pmbrig


_______________________________________________
use-livecode mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to