Re: Getting a list of object properties

2014-10-13 Thread Bob Sneidar
Your sacrifices are greatly appreciated. ;-) Bob S On Oct 10, 2014, at 21:19 , J. Landman Gay jac...@hyperactivesw.commailto:jac...@hyperactivesw.com wrote: I found the problem. I had something left over from a previous search in the dictionary--upper right hand corner of the Dictionary

Re: Getting a list of object properties

2014-10-13 Thread William Prothero
Folks: Thanks for the info. This should reduce some frustration. I can use the object inspector to find the kind of object the item is, then list all of its properties so that I am clued in on what words to search for in the dictionary. That is a big help. Thanks Bill William A. Prothero

Re: Getting a list of object properties

2014-10-10 Thread Jim Hurley
Message: 1 Date: Thu, 9 Oct 2014 13:23:09 -0700 From: Peter Haworth p...@lcsql.com To: How to use LiveCode use-livecode@lists.runrev.com Subject: Re: Getting a list of object properties Message-ID: CAGDT7eO+uQWL3+AvOz=N=CMsykF1WMz7=qjocdk6jvsefdu...@mail.gmail.com Content-Type: text

Re: Getting a list of object properties + Dictionary question

2014-10-10 Thread Earp Robert J.
They say you learn something new every day Jacque, and in my case/age I think that is because I forget something also!! The list is a great place to get brain cells talking to each other again, and many thanks for your frequent contributions. I'm using LC 6.6.3 on Mavericks and the Dictionary

Re: Getting a list of object properties

2014-10-10 Thread Peter Haworth
On Fri, Oct 10, 2014 at 5:02 AM, Jim Hurley jhurley0...@sbcglobal.net wrote: And then there is Richard’s Plugin “4Wprops” which is more complete than “the properties” For example it lists the Height and Width Properties that can be derived from other properties are not included in the array

Re: Getting a list of object properties

2014-10-10 Thread J. Landman Gay
On 10/10/2014, 7:02 AM, Jim Hurley wrote: Jacque, I’m missing something in your explanation of how to use the dictionary. I'm not sure what part isn't clear? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: Getting a list of object properties + Dictionary question

2014-10-10 Thread Paul Hibbert
Bob, I think you are missing the point of… 1. Select the object in left-hand column. Look at the far left column, the top most word in this column is All, go down to the Object section and click on one object, say Field or Button then follow point 2 in Jacque's instruction. I'm sure the

Re: Getting a list of object properties + Dictionary question

2014-10-10 Thread J. Landman Gay
On 10/10/2014, 10:56 AM, Earp Robert J. wrote: I'm using LC 6.6.3 on Mavericks and the Dictionary doesn't work as you suggest, it just sorts the contents of the dictionary columns by Type, which does put all the type properties together, but not all of the properties for a given object. I'm

Re: Getting a list of object properties

2014-10-10 Thread J. Landman Gay
On 10/10/2014, 11:48 AM, Peter Haworth wrote: The dictionary is also not always a good reference point for a list of properties Ah. That would explain my last post. I do know that there are lots of synonyms and see alsos that have been overlooked but I thought the basic properties would be

Re: Getting a list of object properties

2014-10-10 Thread Jim Hurley
Message: 10 Date: Fri, 10 Oct 2014 12:19:01 -0500 From: J. Landman Gay jac...@hyperactivesw.com To: How to use LiveCode use-livecode@lists.runrev.com Subject: Re: Getting a list of object properties Message-ID: 54381505.1020...@hyperactivesw.com Content-Type: text/plain; charset=windows

Re: Getting a list of object properties + Dictionary question

2014-10-10 Thread Robert J. Earp
Thanks Paul, light bulb duly switched on !! I thought Jacque was referring to the left-hand Keyword column, duh :-P Happy Thanksgiving BTW :-) best, Bob... Bob, I think you are missing the point of? 1. Select the object in left-hand column. Look at the far left column, the top

Re: Getting a list of object properties

2014-10-10 Thread J. Landman Gay
On 10/10/2014, 6:32 PM, Jim Hurley wrote: I found the problem. I had something left over from a previous search in the dictionary--upper right hand corner of the Dictionary window. I wish I had a nickel for every time I've done that. Another thing I do is forget to choose All in the category

Getting a list of object properties

2014-10-09 Thread William Prothero
Folks: Sometime back, I remember a posting about how to get a list of property names of an object. Anybody remember it? I’m trying to use a “slider” object and have googled, etc, to no avail. The docs don’t show “slider” and so it’s just one of those docs shortcomings that hopefully will

Re: Getting a list of object properties

2014-10-09 Thread William Prothero
Folks: Ok, I found how to set the end and start values. e.g. put the startValue of scrollBar “axisEntry Still, if anybody remembers the way to get a list of properties (a script), other than looking in the docs, I’d be interested. Best, Bill On Oct 9, 2014, at 10:44 AM, William Prothero

Re: Getting a list of object properties

2014-10-09 Thread dunbarx
William. Do you mean the properties? Craig -Original Message- From: William Prothero proth...@earthednet.org To: Use-livecode Use-livecode use-livecode@lists.runrev.com Sent: Thu, Oct 9, 2014 1:49 pm Subject: Re: Getting a list of object properties Folks: Ok, I found how to set

Re: Getting a list of object properties

2014-10-09 Thread William Prothero
Message- From: William Prothero proth...@earthednet.org To: Use-livecode Use-livecode use-livecode@lists.runrev.com Sent: Thu, Oct 9, 2014 1:49 pm Subject: Re: Getting a list of object properties Folks: Ok, I found how to set the end and start values. e.g. put the startValue

Re: Getting a list of object properties

2014-10-09 Thread Peter Haworth
On Thu, Oct 9, 2014 at 1:09 PM, William Prothero proth...@earthednet.org wrote: If I do: put the properties of scrollbar “axisEntry I don’t get anything in the message box. LC7.0 rC2, Mavericks. That's because the properties is an array keyed by property name with the value being the

Re: Getting a list of object properties

2014-10-09 Thread Klaus major-k
Hi Bill, Am 09.10.2014 um 22:09 schrieb William Prothero proth...@earthednet.org: ... If I do: put the properties of scrollbar “axisEntry I don’t get anything in the message box. LC7.0 rC2, Mavericks. the properties of xyz will return an ARRAY, that's why :-) Do this: put the properties

Re: Getting a list of object properties

2014-10-09 Thread J. Landman Gay
On 10/9/2014, 3:09 PM, William Prothero wrote: Wouldn’t it be great for newbies to have a tab in the object inspector that listed all of the settable property names and messages? Yes, some are shown in the BvG Docu 2 app, but it’s incomplete. You can see all the properties of any object in the

Re: Getting a list of object properties

2014-10-09 Thread FlexibleLearning.com
William Prothero proth...@earthednet.org wrote If I do: put the properties of scrollbar axisEntry I don't get anything in the message box. LC7.0 rC2, Mavericks. Bill The dictionary entry for Properties does need revising, but it is correct insofar as you get an array not a list. I think