home *** CD-ROM | disk | FTP | other *** search
- /* ActionInfo - Give information about the action of an object the user
- clicks on.
- */
-
- row = getclickrow('Click on the object whose action you want to learn about')
- col = getcolumn()
- obj = getobjectat(col, row)
-
- name = getname(obj)
- act = getaction(obj)
-
- text = getactiontext(obj)
-
- say 'object name: ' name
- say 'action type: ' act
-
- if text ~= '' then say 'action text: ' text
-