07-07-2008, 11:44 AM
here is the small change to your script
>>>>>>>>>>>
Code:
Dim props()
'You need to set the All the Properties to a Object, you can directly assign to a variable
Set props = Browser("Gmail: Email from Google").Page("Gmail: What's been keeping").Link("Gmail Blog").GetTOProperties()
propscount = props.count () ' While assigning count to a variable you need to call using ()
msgbox(propscount)
For i = 0 To propscount - 1
propName = props(i).Name
propValue = props(i).Value
MsgBox propName & " = " & propValue
Next