Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
More arguments expected
#2
need to fix these two lines  from
__RegisterHotKey hk3.Register(0 3 VK_NUMPAD9)

__RegisterHotKey hk4.Register(0 4 VK_NUMPAD6)

to

__RegisterHotKey hk3.Register(0 3 0 VK_NUMPAD9)

__RegisterHotKey hk4.Register(0 4 0 VK_NUMPAD6)

the Register function requires 4 arguments and you have only 3 so

need to add a 0 to the mod key argument to tell the function your not using a modifier key


Tip: in the qm editor if you left click a word  for example Register. Then look in qm status bar window and it will show you what is required. Also you can then press F1 to read more info about that function


Messages In This Thread
More arguments expected - by InterestedNewbie - 05-07-2018, 02:50 PM
RE: More arguments expected - by Kevin - 05-07-2018, 03:49 PM
RE: More arguments expected - by InterestedNewbie - 05-07-2018, 05:19 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)