home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 90 / CD Actual 90.iso / Software3D / K-3D / k3d-0.4.2.1 / scripts / describe_object_properties.javascript < prev    next >
Encoding:
Text File  |  2004-07-23  |  201 b   |  9 lines

  1. //javascript
  2.  
  3. var properties = Object.properties;
  4.  
  5. for(property in properties)
  6.     {
  7.         Application.ui.Message(properties[property].name + "\n" + properties[property].description, Object.name);
  8.     }
  9.