--- In [email protected], Dan Pride <danielpr...@...> wrote: > > var crapola = squaresGrid. selectedItem; > Works but Shows up with a warning of no type declaration > It shows up in debugger as "Object" > but var crapola:Object = squaresGrid. selectedItem; > does not resolve the situation. > Comments or suggestions would be appreciated again > thanks > Dan
Try var crapola:* = squaresGrid.selectedItem; Then look and see what variable type you have. var crapola types it as Object. HTH; Amy

