I finally have the answer. After posting on a few message forums and some Google searching, here is the code that works..YAY!
==========================================================
=========================================================
SBsteven
==========================================================
Code:
Dim oDesc 'Description Object
Dim colObject 'Object Collection
Set oDesc = Description.Create
oDesc("micclass").Value = "WebElement"
oDesc("html tag").Value = "SPAN"
oDesc("x").Value = 180
Set colObject = Browser("micClass:=Browser").Page("micClass:=Page").ChildObjects( oDesc )
'Retrieve the count
iCount = colObject.Count
msgbox iCount
SBsteven