Mark Stuart wrote:
Hi Richard,
I placed a button on the Main stack and put this script into it:

on mouseUp
   put the cRevStandaloneSettings of this stack into tSettings
   answer tSettings
end mouseUp

but it displayed nothing in the dialog.

What am I missing?

That's a custom property set, not a single property. To get those values you can do this:

  put the customPropertySet["cRevStandaloneSettings"] \
   of stack "MyStack" into tMyArray

That gives you the array of data; you can see all the values with:

  combine tMyArray with return and tab
  put tMyArray



--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to