ha! im using this plugin!Fla$her wrote: 2022-09-08, 04:20 UTC The same can be achieved using Autorun.wdx (ControlSetMouseAction).
what should i put in the autorun.cfg?
Moderators: Hacker, petermad, Stefan2, white
ha! im using this plugin!Fla$her wrote: 2022-09-08, 04:20 UTC The same can be achieved using Autorun.wdx (ControlSetMouseAction).
Code: Select all
ControlSetMouseAction /M 3 SendCommand 3003
Code: Select all
#SingleInstance force
#NoTrayIcon
#IfWinActive ahk_class TTOTAL_CMD
MButton::
SendMessage, 0x433, 3003,,, ahk_class TTOTAL_CMD
return
Code: Select all
LoadLibrary Plugins\Autorun_Tweaks.dll
For simplicity plugin using and using single config file in different TC versions, for 64-bit verions implicit loading used (similarly to TC plugins). For that 64-bit version of plugin should have «dll64» extension. In configuration «dll» extension using.
Example (on MoveButton): record in configuration «LoadLibrary Plugins\Autorun_MoveButton.dll». Under 32-bit version will be loaded Autorun_MoveButton.dll, under 64-bit version — Autorun_MoveButton.dll64.
Code: Select all
LoadLibrary Plugins\Autorun_Tweaks.dll
ControlSetMouseAction /M3 SendCommand 3003
And where is the space after /M?
For a long time you will have to wait for the implementation of what has already been implemented.jinsight wrote: 2022-09-10, 19:24 UTC This feature should be a default and built-in. TC doesn't use plugins for keyboard so TC ought not to do so for mouse input.
I don't understand what you mean. How it "ought not", if this is the essence of petermad's request?jinsight wrote: 2022-09-10, 19:24 UTCTC doesn't use plugins for keyboard so TC ought not to do so for mouse input.
What exactly is not working?
Code: Select all
LoadLibrary Plugins\Autorun_Tweaks.dll
ControlSetMouseAction /M 3 SendCommand 3003