TeleFlow BasicScript SettingVariables

TeleFlow BasicScript SettingVariables

From TeleFlow

(Difference between revisions)
Jump to: navigation, search

Wikilib (Talk | contribs)
(New page: Setting TeleFlow variables in the Run Basic Script step is accomplished by simply assigning a value to a TeleFlow variable with an '=' sign.<br> <br> For example, the following line will s...)
Next diff →

Current revision

Setting TeleFlow variables in the Run Basic Script step is accomplished by simply assigning a value to a TeleFlow variable with an '=' sign.

For example, the following line will set (or create, if it doesn't already exist) the global variable @MY_VARIABLE to 5:

@MY_VARIABLE = 3 + 2

To set or create a local variable using Run Basic Script, use the "LOCAL" tag just prior to the variable name. For example, the following line will create/set local variable @MY_LOCAL_VARIABLE to 6:

LOCAL @MY_LOCAL_VARIABLE = 3 + 3

Related Steps

Image:Iv_517.gif BasicScript