Jump to content
Corsair Community

Cycle through keystrokes


November9

Recommended Posts

Hi,

 

I have a glaive, and I'm trying to get one of the buttons to cycle through a set of keys everytime i press the button, however I'm not finding an option to cycle. Is this possible

 

E.G trying to cycle through a,q,y. So evertime i press the button it goes through a then next click q then next click y.

 

Thanks!

Link to comment
Share on other sites

without using multiple profiles, I do not believe that can be achieved in the current icue, however it is easy to do with autohotkey.

 

It could basically be like:

 

global whichKey:=0

 

;mousebutton4 lets say

XButton1::

whichKey++

if(whichKey>=3){

whichKey:=0

}

else if(whichKey=0){

send a

}

else if(whichKey=1){

send q

}

else if(whichKey=2){

send y

}

else

{

MsgBox something's wrong

}

Return

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...