contents   index   previous   next



SE.ARGS

The members of this object are the arguments passed to your wrapper function. If you are outside a wrapper function, this object has no members. You cannot add or delete members from this object, you can only access and update the actual parameters passed to your function.

 

Since ScriptEase supports named arguments, you can specify a normal member name. However, most wrapper functions have no names for the arguments. Normally, you just use SE.NUM(x) to access argument number x. For instance, SE.NUM(0) is the 0th argument (i.e. the first argument passed to your function) and so forth. For the arguments object, SE.INDEX accesses the members just like SE.NUM does, they are synonymous.

 

You cannot use SE.VALUE with SE.ARGS.

 


SE_ACTIVATION