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         |     [EMAIL PROTECTED]
HyperActive Software           |     http://www.hyperactivesw.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