the
params
params
()
put the params
In XION, the params
function returns a list
of the parameters passed to the currently executing handler, not including the message name. In other words, the params
looks like:
parameter,parameter,parameter,...
In HyperTalk, the params
function returns a string containing the message name and the entire parameter list passed to the currently executing handler. The returned string is suitable for the do
keyword (if the handler is a message handler) or the value
function (if the handler is a function handler). In other words, the params
looks like:
messageName "parameter","parameter","parameter",...
or:
functionName("parameter","parameter","parameter",...)