It is currently Thu Mar 28, 2024 10:15 am

All times are UTC - 8 hours [ DST ]


Forum rules


Before posting a bug report or a feature request, search the forum for an older post on the same topic. If you are reporting a crash, try capturing a crash dump. You can find instructions here: How to capture crash dumps



Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: Thu Jan 04, 2018 8:55 am 
Offline

Joined: Thu Jan 04, 2018 8:47 am
Posts: 1
I am using the AutoCorrect script for AutoHotkey.
https://gist.github.com/endolith/876629

the hotkey to launch is Win + H. I have noticed my mouse will randomly jump off the screen, windows will maximize/minimize, and I will loose the G key or it will behave as if the Windows Key is stuck down and every time the ClassicShell start menu will pop up. The solution is to hit the windows key several times which will let you exit back to the AutoHotkey inputbox to finish adding the spelling correction however it will still minimize or maximize windows randomly. I traced the problem to ClassicShell and tried disabling Windows key hotkeys under the "Controls" menu but it did not help. If I close ClassicShell the problem goes away so I'm pretty sure the issue is with ClassicShell but I'm not sure how to fix it.


Top
 Profile  
Reply with quote  
PostPosted: Thu Jan 04, 2018 9:35 am 
Offline
User avatar

Joined: Sun Jan 06, 2013 1:44 pm
Posts: 1996
It might be related to the shortcut conflicting
I had a similar issue with one of my configuartions. (except my hotkey was win+mousewheel for volume)
Since your already using auto-hotkey this should be fairly easy :)

1 right click start button, go to settings
2. check 'show all settings'
3 on the controls tab, change 'windows key opens' to nothing
4 also change 'additional classic menu hotkey (for me I used ctrl+shift+r)

This auto-hotkey script checks if the windows key was pressed (Less than .25 seconds) or held (over .25 seconds) and only sends the (ctrl+shift+r)hotkey if it was 'pressed' otherwise just passes the regular windows hotkey through


Code:
#NoTrayIcon
<<$LWin::
    KeyWait, LWin, T0.00               
    If ErrorLevel                        
      {
      
        KeyWait, LWin, T.3             ; Wait .25 to see if key is held

        If !ErrorLevel                  ; No timeout, so key was released
          { 
           Send +^r
            Return
          }         

       Send {RWin down}
        KeyWait, LWin                   ; Wait for button to be released
        Send {RWin up}      
        Return
      }
      
      
Return


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 31 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group, Almsamim WYSIWYG Classic Shell © 2010-2016, Ivo Beltchev.
All right reserved.