Page 1 of 1

Object Properties

Posted: Sun Jun 29, 2008 7:32 pm
by David_USA
How do I get a list of properties that can be set by scripting for any object I choose?

The object inspector does not give me a property label that I can script.

Thank You,

David

Finding all properties

Posted: Sun Jun 29, 2008 7:57 pm
by bjb007
David_USA

The search function is first stop for me
when I have a question.

Seach for "properties" and under the topic
"Finding all properties" you'll get a pretty
good answer.

Posted: Sun Jun 29, 2008 9:09 pm
by malte
To get a list of all properties and their values by script try this:

I have this in a button, you will need to adapt it to your needs:

on mouseUp
local tProps
put the properties of me into tProps
combine tProps with cr and TAB
put tprops
end mouseUp

Hope that helps,

Malte

Thank You

Posted: Sun Jun 29, 2008 11:22 pm
by David_USA
This gives me a start.

It did not give me all I was looking for.

Thank you for your help.

David