Home AMX User Forum AMX General Discussion

ARQ Line buttons?

Hey guys,

One of the things that bothers me with the ARQ module is that when you click on a line, you have to do it twice- once to select it and another to actually confirm the press. I know that, for instance, in Ctron you can just click on the line and it will press the button on the ARQ. Is there any easy way to do this in the AMX module? I figured there were other channels for it but I don't see them.

Thanks guys,

Dan

Comments

  • Joe HebertJoe Hebert Posts: 2,159
    If you're using the latest version (6.0) the module definition defaults to a single press:
    #if_defined arqTP1
    DEFINE_MODULE 'ARQ TP UI v6_0_0' ARQ_TP_1    (arqTP1,					//Touch Panel Device
                                                  ARQ_UNITS,				//Virtual AudioReQuest Devices
                                                  ARQ_SELECT,				//ARQ selection channels
                                                  ARQ_DISCONNECT,			//ARQ deselection channel
                                                  ARQ_CMDS,					//Command Channel Array
                                                  ARQ_ADV_CMDS,				//Advanced Command Channel Array
                                                  ARQ_KEYBOARD_CH,			//Keyboard Channel Array
                                                  ARQ_NUM_CH,				//Numbers Channel Array
                                                  ARQ_FB_CH,				//Variable Text Channel Array
                                                  ARQ_LVL_CH,				//Level for Elapsed Time progress bar
                                                  ARQ_DYNAMIC_IMAGES,		//Dynamic image resource names for Cover Art
                                                  [b]ARQ_LINE_PRESS_SINGLE,[/b]	//Line Press Type (single or double)
                                                  ARQ_NUM_LINES[6]);		//Number of lines on Browse page (change array index to 1-8)
    #end_if
    
    

    If you are using version 5.0.1 then change:

    ARQ_LINE_PRESS_DOUBLE

    TO:

    ARQ_LINE_PRESS_SINGLE

    HTH
  • dmurray14dmurray14 Posts: 80
    Joe Hebert wrote: »
    If you're using the latest version (6.0) the module definition defaults to a single press:
    #if_defined arqTP1
    DEFINE_MODULE 'ARQ TP UI v6_0_0' ARQ_TP_1    (arqTP1,					//Touch Panel Device
                                                  ARQ_UNITS,				//Virtual AudioReQuest Devices
                                                  ARQ_SELECT,				//ARQ selection channels
                                                  ARQ_DISCONNECT,			//ARQ deselection channel
                                                  ARQ_CMDS,					//Command Channel Array
                                                  ARQ_ADV_CMDS,				//Advanced Command Channel Array
                                                  ARQ_KEYBOARD_CH,			//Keyboard Channel Array
                                                  ARQ_NUM_CH,				//Numbers Channel Array
                                                  ARQ_FB_CH,				//Variable Text Channel Array
                                                  ARQ_LVL_CH,				//Level for Elapsed Time progress bar
                                                  ARQ_DYNAMIC_IMAGES,		//Dynamic image resource names for Cover Art
                                                  [b]ARQ_LINE_PRESS_SINGLE,[/b]	//Line Press Type (single or double)
                                                  ARQ_NUM_LINES[6]);		//Number of lines on Browse page (change array index to 1-8)
    #end_if
    
    

    If you are using version 5.0.1 then change:

    ARQ_LINE_PRESS_DOUBLE

    TO:

    ARQ_LINE_PRESS_SINGLE

    HTH



    Awesome! Thanks a bunch.

    Dan
Sign In or Register to comment.