puts properties of an object into message window

Date: Tue Jul  1 14:32:49 MST 2003
From: loren mork <>
Subject: puts properties of an object into message window

dumps all the properties of an object so that you may view them during runtime

on dumpObject anObject
  tCount = anObject.count() 
  repeat with i = 1 to tCount
    put anObject.getpropat(i)&" = "&anObject[i]   
  end repeat
end