Search found 7592 matches

by phil
Tue May 14, 2024 8:07 am
Forum: XMouse Button Control
Topic: Movement Threshold
Replies: 2
Views: 15

Re: Movement Threshold

Change movement to scroll is not initiated by move movement, it is initiated by the button press. There is a sensitivity but that controls how reactive it is to movement. The abort chording on movement is now configurable (in the latest beta), I expect that will extend to the abort button held (but ...
by phil
Tue May 14, 2024 8:03 am
Forum: XMouse Button Control
Topic: Delay Time for Activate on Hover
Replies: 2
Views: 18

Re: Delay Time for Activate on Hover

There is, but its not in the GUI in the current release version - you have to edit the settings XML manually.
It is however in the GUI in the latest beta, in advanced settings, active window on hover delay, and can be adjusted between 1 and 5000ms.
by phil
Tue May 14, 2024 7:58 am
Forum: XMouse Button Control
Topic: Mouse button or scroll wheel plus Ctrl, Alt or Shift
Replies: 5
Views: 172

Re: Mouse button or scroll wheel plus Ctrl, Alt or Shift

1. no - not yet, but maybe if I made that change (and the applications honor the setting change on the fly). 2. Advanced window scrolling does not apply to the default profile, but to individual application profiles. In there, you can adjust, per profile (but not when a key is held) the number of in...
by phil
Mon May 13, 2024 4:31 pm
Forum: XMouse Button Control
Topic: Mouse button or scroll wheel plus Ctrl, Alt or Shift
Replies: 5
Views: 172

Re: Mouse button or scroll wheel plus Ctrl, Alt or Shift

OK I didn't understand your request clearly - so you can ignore my suggestion. I thought you wanted to make the wheel send a CTRL+scroll, rather than you holding CTRL to modify the scroll behavior! When you say "in your case" is that because you have set Windows to scroll in pages instead ...
by phil
Mon May 13, 2024 4:15 pm
Forum: XMouse Button Control
Topic: Middle button which inactivate the MB4
Replies: 2
Views: 6997

Re: Middle button which inactivate the MB4

Can only imagine this must be device specific as it does not seem to be a problem with any of my mice... That includes logitech, Microsoft and generic (trust) mice Ive check with here. Just to be sure XMBC is not seeing anything, turn on debug logging (settings -> updates & logging tab) then OK ...
by phil
Fri May 10, 2024 9:18 am
Forum: XMouse Button Control
Topic: Displaying X-Mouse Layer Number on the Screen
Replies: 2
Views: 45

Re: Displaying X-Mouse Layer Number on the Screen

XMBC can control the windows mouse pointer already to do this, but I very much doubt it will ever be able to control games in that way. It knows nothing about the games so unless there is a standard API to do this, I doubt its possible (every game will be different for example). I'm not sure about a...
by phil
Thu May 02, 2024 11:21 pm
Forum: XMouse Button Control
Topic: Mouse button or scroll wheel plus Ctrl, Alt or Shift
Replies: 5
Views: 172

Re: Mouse button or scroll wheel plus Ctrl, Alt or Shift

I'm not entirely sure if this answers your question, but you can use simulated keys to send a combo of ctrl+wheel up. For example, if you mapped {CTRL}{MWUP} to the mouse wheel up, it would instead of just the normal scroll up, would press CTRL, then send the wheel up (then release ctrl). So that mi...
by phil
Wed May 01, 2024 1:56 am
Forum: XMouse Button Control
Topic: Using XMBC on TradingView
Replies: 4
Views: 61

Re: Using XMBC on TradingView

Thanks :) I guess/hope that means it worked?!
by phil
Wed May 01, 2024 1:31 am
Forum: XMouse Button Control
Topic: Using XMBC on TradingView
Replies: 4
Views: 61

Re: Using XMBC on TradingView

Doesn't sound too complex... Create a window profile for the application (tradingview) - simply hit the "Add" button on the main configuration window and find the tradingview.exe(for example) from the list of running processes (assuming it is running during this setup). Now, on left click ...
by phil
Mon Apr 29, 2024 9:04 am
Forum: XMouse Button Control
Topic: Mouse zoom in firefox - how to
Replies: 1
Views: 329

Re: Mouse zoom in firefox - how to

Hi, you should be able to use "button held" configuration for this, but I suspect that is what you have already tried? Please can you be a little more specific about what you have actually setup, maybe send me a copy of your profile (via PM) so I can try the same here and see if I have the...
by phil
Wed Apr 24, 2024 7:44 pm
Forum: XMouse Button Control
Topic: XMBC 2.21 Beta
Replies: 98
Views: 154904

Re: XMBC 2.21 Beta

Here is 2.21 Beta 37. Changes since 2.21 Beta 36 (above): #869 - Fixed some more issues that could cause XMBC to crash in some circumstances. #868 - Fixed several, particularly in portable mode relating to loading custom cursors from the same folder as the executable. Updated change movement to scro...
by phil
Wed Apr 24, 2024 7:37 pm
Forum: XMouse Button Control
Topic: Autley Vertical Mouse
Replies: 1
Views: 412

Re: Autley Vertical Mouse

You can ask, but I don't know it anyone can answer (I can't, other than to say XMBC works with almost all mice (up to 5 buttons)). A quick search of the forums for "Autley" reveals you are not the first to ask this. Unfortunately no one appears to have tried it, or if they have, they haven...
by phil
Tue Apr 23, 2024 10:00 pm
Forum: XMouse Button Control
Topic: Doubt - Press simulated key on minimized window
Replies: 1
Views: 472

Re: Doubt - Press simulated key on minimized window

This is not possible. Simulated keys works by sending to the keyboard buffer, so the output of that is directed, by Windows, to the active window. I mean, it could continue sending keys, but they would not go to the game, they would go to what ever screen has focus, no different to if you were press...
by phil
Tue Apr 23, 2024 9:57 pm
Forum: XMouse Button Control
Topic: Help writing code
Replies: 3
Views: 484

Re: Help writing code

Sorry you completely lost me there. Please can you be precises, step by step what you want to achieve (including you actual click)... Like: When I press the mouse button 4: 1. Press F9 2. Release F9 3. Wait a few milliseconds (for example) 4. Press Escape 5. Release escape 9. Press and HOLD the left...
by phil
Tue Apr 23, 2024 8:25 am
Forum: XMouse Button Control
Topic: Help writing code
Replies: 3
Views: 484

Re: Help writing code

Assuming you don't want this to repeat, or anything fancy, then the following simulated keystrokes should work: Method 1 (When button is pressed) {F9}{ESC}{LMBD}{F9}{ESC}{LMBU} You may need some delays in there eg. {waitms:50} between the keys if its too fast: {F9}{waitms:50}{ESC}{waitms:50}{LMBD}{w...