-
I’m sure this is simple but … Given a global variable @myVar which frequently changes its value, how can that value be displayed in a second button without needing to do/press anything. Every time @myVar changes, the new value should be immediately displayed in the second button.
-
I think what I’m looking for here is called Indirection.
A statement such as:[(press){@myItem:#getitem(@Dex,@myList)#}{text:#@myItem#}]
can be used to pull item @Dex (a number from 1 to 5) from a list named @myList and place it into the variable @myItem. BUT I want it to pull the item not from @myList but rather from a list which is named INSIDE @myList?
For example, the @myList variable might hold a list name @Use34M (or any of dozens of other dynamic list names) in which case @Use34M is the real list I want to pull a value from.
I hope that makes some sense. Can it be done?
Thanks.