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
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
0
Comments
#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_ifIf you are using version 5.0.1 then change:
ARQ_LINE_PRESS_DOUBLE
TO:
ARQ_LINE_PRESS_SINGLE
HTH
Awesome! Thanks a bunch.
Dan