seCreateBlankContext
syntax: |
secontext seCreateBlankContext( struct seContextParams *params, seconstcharptr userkey); |
where: |
params a pointer to an seContextParams structure filled in with context options.
userkey the userkey, if applicable
|
return: |
An secontext, suitable to be used in further ScriptEase API calls.
|
description: |
This routine create a scripting context without standard functions. You should use seCreateContext to create your scripting contexts. This function is used by seCreateContext to do so. If you create a scripting context using this function directly, scripts run in this context will have no standard functions available such as eval or any of the standard objects String, Number, etc.
The userkey is provided to you via email when you download an evaluation version of ScriptEase. Purchased versions ignore this parameter, for which you can pass NULL.
|
see: |
seCreateContext, seDestroyContext
|