Problem with send command???

J. Landman Gay jacque at hyperactivesw.com
Fri Jun 27 00:31:13 EDT 2008


Shao Sean wrote:
> I have run into issues where my data being "sent" has had commas and it 
> ends up thinking that it is a new parameter..

If you specifically add quotation marks around the parameters, it 
arrives as one piece. You may have to use the "value" function to get 
the quotes off in the receiving handler. Something like this:

on test
   put "one,two,three" into tParams
   send "paramNumber" &&quote& tParams & quote to me in 1
end test

on paramNumber pParams
   put the paramcount -- gives one
   put the value of pParams into tVar -- 1,2,3
end paramNumber


-- 
Jacqueline Landman Gay         |     jacque at hyperactivesw.com
HyperActive Software           |     http://www.hyperactivesw.com



More information about the use-livecode mailing list