Celin.ONCSL(query name, func name, one or more parameters)

Runs a function when a query event happens.

Example

When script update is triggered, run function named updateAB and pass in named excel cell z_an8;

Celin.ONCSL("update","updateAB",z_an8)

The below function will output the message Update {value of cell z_an8} when the script is busy.

func updateAB
if (msg.busy)
  return [[`Update ${params[0]}`]];
else 
 return [['']];

Copyright © 2020 Finnur Bragason.