> On Feb 23, 2017, at 12:32 PM, Peter Bogdanoff via use-livecode > <[email protected] <mailto:[email protected]>> wrote: > > put value("myFunction(hello, world)", group "myGroup" of card "myCard") into > tResult > > I want to use a variable as a parameter instead of “hello, world” as in the > page example.
You could try: put value(“myFunction(“ & myVar & ")", group "myGroup" of card "myCard") into tResult Paul _______________________________________________ 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
