Beginner question: How can I see a list of properties?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Beginner question: How can I see a list of properties?
Is there a way to see all the properties available for an object?
For example, all the properties for a button.
Also, is intellisense available while writing a script?
For example, all the properties for a button.
Also, is intellisense available while writing a script?
Re: Beginner question: How can I see a list of properties?
Hmmm.
Tough one.
Ah yes. There is a property called "the properties". Go get it. But be careful, it is an array.
Craig Newman
Tough one.
Ah yes. There is a property called "the properties". Go get it. But be careful, it is an array.
Craig Newman
Re: Beginner question: How can I see a list of properties?
I did say "Beginner"
Thanks for the pointer.
Is Intellisense available while typing?

Thanks for the pointer.
Is Intellisense available while typing?
Re: Beginner question: How can I see a list of properties?
Hi.
I have an abrasive personality. Do not worry about that at all.
More importantly, if you query a certain property of a control, like its "rect", you get a value in the clear. But if you extract "the properties", you get an array, as I said. Is this something you are familiar with? If not, you will get a very nice lesson and pretty good exercise if you look up the "combine" command in the dictionary.
I do not know that much about intellisense. The message box has a certain level of autocomplete, based on previous text it "learns". Others will likely chime in...
Craig
I have an abrasive personality. Do not worry about that at all.
More importantly, if you query a certain property of a control, like its "rect", you get a value in the clear. But if you extract "the properties", you get an array, as I said. Is this something you are familiar with? If not, you will get a very nice lesson and pretty good exercise if you look up the "combine" command in the dictionary.
I do not know that much about intellisense. The message box has a certain level of autocomplete, based on previous text it "learns". Others will likely chime in...
Craig
-
- VIP Livecode Opensource Backer
- Posts: 10052
- Joined: Sat Apr 08, 2006 7:05 am
- Contact:
Re: Beginner question: How can I see a list of properties?
I made a property sheet tool a while back you may find useful:
http://fourthworld.net/revnet/devolutio ... ops.rev.gz
http://fourthworld.net/revnet/devolutio ... ops.rev.gz
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
-
- VIP Livecode Opensource Backer
- Posts: 157
- Joined: Thu Jun 29, 2006 4:16 pm
Re: Beginner question: How can I see a list of properties?
That’s handy, Richard. Thanks for sharing.
be well,
randy
be well,
randy
Re: Beginner question: How can I see a list of properties?
This easiest way is to open the dictionary, click on the type of control you want to examine in the left side list, and then click on the Type header at the top. That will sort the results by the type of keyword so that all properties are grouped together.
Jacqueline Landman Gay | jacque at hyperactivesw dot com
HyperActive Software | http://www.hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
Re: Beginner question: How can I see a list of properties?
Hi RichardFourthWorld wrote:I made a property sheet tool a while back you may find useful:
http://fourthworld.net/revnet/devolutio ... ops.rev.gz
That looks like it would be useful. When I run it, there is an error and the scroll bars do not work.
Can you tell me how to get it to work?
TIA
-
- VIP Livecode Opensource Backer
- Posts: 10052
- Joined: Sat Apr 08, 2006 7:05 am
- Contact:
Re: Beginner question: How can I see a list of properties?
I just posted a newer version, which has bug fixes and no password protection. If you find error please send the recipe to ambassador AT fourthworld.com
Thanks -
Thanks -
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
Re: Beginner question: How can I see a list of properties?
Thanks, it is very usefulFourthWorld wrote:I just posted a newer version, which has bug fixes and no password protection. If you find error please send the recipe to ambassador AT fourthworld.com
I sent you an email.
Re: Beginner question: How can I see a list of properties?
OIC. I was wondering where to see a complete list.jacque wrote:This easiest way is to open the dictionary, click on the type of control you want to examine in the left side list, and then click on the Type header at the top. That will sort the results by the type of keyword so that all properties are grouped together.
Most useful, thanks.