Quote: Originally Posted by
electricitylike 
No what I mean is, can I tie an indicator element to a variable and use that to toggle whether it shows the off or on skin, somewhat like the shuffle indicator code does?
The problem is I can't seem to find something I can set the variable too in order to set the indicator to "on".
So the indicator would be something like IXX, ..., "$INDONOFF$"
The question being, what do you set INDONOFF too in order to actually turn the indicator on and off? I've tried the aforementioned variations and they don't seem to work.
If you want to tie the indicator to a variable, you can do this:
Indicator Code:
Code:
IXX, ..., "CUSTOM_INDONOFF"
.
ExecTBL.ini
Code:
"SETINDONOFF","BYVAR;yourvariable;OFF<<ON||SETIND;CUSTOM_INDONOFF;$yourvariable$"
.
You can then toggle the variable "yourvariable" using "SETVAR," then execute "SETINDONOFF" to set the indicator state.
Make sense?