Jump to content
Corsair Community

Trouble with making macro for k68


da real ryan

Recommended Posts

yes there is a text option, it historically has not worked in multi line mode after a reboot. Not sure if that has been fixed, but here:

http://www.smithany.com/singlelinecuetext.png

http://www.smithany.com/multilinetextwhenitworks.png

 

also depending on your use case you may want to add a delay as some applications do realtime stuff as text is entered like spell check and it could potentially cause a crash and the couple ms wont kill ya

Link to comment
Share on other sites

macros with single keystrokes are more reliable. which is a bummer, but you can just record a typed section and then just hit the enter key as you see fit and even leave it be after deleting all delays, or if it is relatively short you can add it all manually one keystroke at a time making sure they are key strokes not key press key releases. If you need more than that, I would highly highly recommend looking into autohotkey as it plays nice in the sand with icue.

 

AHK is simple as well it is like:

;boundKeyBasicallyItsObviousNameLike
A::
Send some text here
Send {Enter}
Send some other text
Return

save it and run it and it and hit the bound key in this case A and you will get

"some text here

some other text"

 

There are loop parse methods and other ways to do long strings, but depending on your avenue, you might be better off using autotext or quickparts if you are in word or whatever.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...