I used this code to do the job:
And it works fine but I think there must be a better way to do this, because parameters may increase or decrease during using the function.
Any one to help out
Code:
function sample(par1, par2, par3) pars = {par1, par2, par3}; for key, value in pairs (pars) do Dialog.Message("Notice", value, MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1); end end
Any one to help out
Comment