Input Table and TCL commands

UncleBuck

Active member
Does anyone know the format you need to have in Input Table so that the TCL commands like "TCL Wait Variable", "TCL Check Variable" and "TCL Change Variable" work correctly?

I can get the commands like "Set S-Var" etc. to work if using the format svanme,my-variable in the table, but for the life of me I can't work out what/how the TCL commands format needs to be.

I thought I would be able to look in the TCL scripts to work it out but they are encrypted.

Cheers,
Colin
 
So to follow up on this.....

After watching a Russian video on youtube (and not understanding a word), it turns out there is a slight difference in how things are set up in the Input Table.

In the case of the S-Var commands you need to define the entries as follows:
svname,my_varaible
svar,set,0
svar,set,1
svar,eq,1

In the case of the TCL commands you need to define the entries as follows:
svar,my_variable,set,0
svar,my_variable,set,1
svar,my_variable,eq,1

There is no need to have defined the variable when using TCL commands (i.e. svname,my_variable) but you have to have the variable name in every one of the svar,... entries
 
Back
Top