Heya Shawn,

I tried your script, and I get the same error. But when I do the following it spins like a charm:

code:

$ie = createobject("internetexplorer.application")


if $ie


$= $ie.navigate("http://www.microsoft.com")


while $ie.busy and @error = 0 loop
while $ie.readystate <> 4 and @error = 0 loop


$document = $ie.document


if $document


?"Name=" $document.nameprop ()


; The following get property does not work ...


?"Title=" $document.title ()


endif


endif


?"pause..." gets $k


exit


Could that be the solution? Please note that with both of the "get property" commands I pass () to illustrate that I dont pass any variables...

Please try it

------------------
Cheers....

David