Re: Get all property names
Re: Get all property names
- Subject: Re: Get all property names
- From: Emmanuel <email@hidden>
- Date: Thu, 31 May 2001 08:39:01 +0200
At 5:00 +0200 31/05/01, Greg Strange wrote:
>
Does anyone know of a way to get al property names that may have been
>
declared by any script?
What about using a scriptable text editor, which could execute something like:
------------------------
set theLines to (every paragraph of theScript where run info 1 is "property")
------------------------
to build the list of the lines declaring properties (then, process the list
to extract the name of the properties) ...
HTH
Emmanuel