Displaying Variable Text on a Modero
TurnipTruck
Posts: 1,485
Greetings,
How the heck do you get a variable text item appear on a button on a G4?
I am trying to use the (up arrow)TXT command in a similar fashion as in G3.
SEND_COMMAND dvMVP7500_TV_ADDRESS, "'^TXT-1,0',ITOA(nTV_TUNER_CHAN_ENTRY)"
dvMVP7500_TV_ADDRESS is the address port of the button and 1 is the address code of the button.
How the heck do you get a variable text item appear on a button on a G4?
I am trying to use the (up arrow)TXT command in a similar fashion as in G3.
SEND_COMMAND dvMVP7500_TV_ADDRESS, "'^TXT-1,0',ITOA(nTV_TUNER_CHAN_ENTRY)"
dvMVP7500_TV_ADDRESS is the address port of the button and 1 is the address code of the button.
0
Comments
SEND_COMMAND vdvTP,"'^TXT-906,1&2,',ITOA(cfgROOMNUM)"
For button with address code 906
G'day Turniptruck,
You dropped a , from your string after the 0.
Your string should look like this;
SEND_COMMAND dvMVP7500_TV_ADDRESS, "'^TXT-1,0,',ITOA(nTV_TUNER_CHAN_ENTRY)"
Cheers