Sorry, I simply do not see any advantage to this, other than making a one liner to pass data to a command or function.
put "chart" into tType put "100" into tSize doSomething tType, tSize What is the big deal? This can become: put "chart" into tType ; put "100" into tSize ; doSomething tType, tSize TADAAA! One liner. ;-) Bob S > On Jun 29, 2017, at 08:59 , Alex Tweedly via use-livecode > <[email protected]> wrote: > > Yeah, so do I - that's why it's important to me :-). > > But you can't do that using the "parameters as strings" techniques described > by Mike Bpnner and Paul Dupuis - i.e. > > DoSomething "type=chart", "size=100" > > or > > DoSomething "type=chart, size=100" _______________________________________________ use-livecode mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode
