One of the main reasons I implemented send and call with params in the PR that 
has been mentioned is because it allows for referenced parameters. The 
following is an error:

on mouseUp
   local tBar
   send “foo tBar” to me
   answer tBar
end mouseUp

on foo @rBar
   put “Howdy" into rBar
end foo

While this works:

on mouseUp
   local tBar
   send “foo” to me with tBar
   answer tBar // answers “Howdy"
end mouseUp

Of course you can’t use referenced params like this using send in time form.
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to