> Instead the simplest I've found is this:
> 
>    on mouseUp
>      put "gaskin" into tPropSet
>      put "richard" into tProp
>      set the customPropertySet of me to tPropSet
>      set the tProp of me to "Howdy!"
>    end mouseUp
> 
> Is there a way to make that a one-liner using array notation?

The only way I can see to do it is with "do"; and maybe use merge to make it
a bit cleaner:

on mouseUp
  put "gaskin" into tPropSet
  put "richard" into tProp
  put "Howdy!" into tVal
  do merge("set the [[tPropSet]][ [[tProp]] ] of me to tVal")
end mouseUp

Note that you need to have a spaces around [[tProp]] otherwise you get an
error...


Ken Ray
Sons of Thunder Software, Inc.
Email: k...@sonsothunder.com
Web Site: http://www.sonsothunder.com/


_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to