Home AMX User Forum NetLinx Studio

Displaying Variable Text on a Modero

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.

Comments

  • This works for me:

    SEND_COMMAND vdvTP,"'^TXT-906,1&2,',ITOA(cfgROOMNUM)"

    For button with address code 906
  • mushmush Posts: 287
    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.

    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
Sign In or Register to comment.