Thanks Eric,

I used what you sent here to create a stack that displays the properties of objects in the spreadsheet like way I wanted. I also made it so that you can click on any object type header and it will resort on that column. That way you can see the types of properties for that object first (in alphabetical order) before the other object properties. It would make a nice addition to the quick reference guides.

I will upload a copy of it to my user area (see3d) as soon as I receive my unlock key from RunRev.

Dennis
On May 27, 2005, at 1:55 PM, Eric Chatonet wrote:

Hi Dennis again,

My plugin "Objects Picker" uses some code like the following to get the properties of an object of a specified type:

on mouseUp
  local tObj, tProps, tPropList
  -----
  put the long ID of btn 1 into tObj -- or whatever you want
  put ObjBuiltInProps(tObj) into tProps
  repeat for each line tProp in tProps
    do "put the" && tProp && "of" && tObj && "& cr after tPropList"
    put tProp & colon & space before line -1 of tPropList
  end repeat
  put tPropList
end mouseUp
------------------------------------
function ObjBuiltInProps pObj
  local tPropArray, tProps
  -----
  put the properties of pObj into tPropArray
  put the keys of tPropArray into tProps
  sort tProps
  return tProps
end ObjBuiltInProps

May be help you.
Best regards from Paris,

Eric Chatonet.

Le 27 mai 05 � 16:16, Dennis Brown a �crit :


Yes, I meant built-in not custom properties. I guess I should wake up first before typing in the morning. I see so many posts about this and that property needing to be set to solve newbie problems, that I thought it would be nice to have a cheat-sheet of them to refer to. It seems incredible that nobody has done this before.


----------------------------------------------------------------
So Smart Software

For institutions, companies and associations
Built-to-order applications: management, multimedia, internet, etc.
Windows, Mac OS and Linux... With the French touch

Plugins, tutorials and more on our website
----------------------------------------------------------------
Web site        http://www.sosmartsoftware.com/
Email        [EMAIL PROTECTED]/
Phone        33 (0)1 43 31 77 62
Mobile        33 (0)6 20 74 50 86
----------------------------------------------------------------

_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution


_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to