Jump to content

HotKeySet Getting Stuck


amin84
 Share

Recommended Posts

Hello,

I searched this forum about this problem and found no real solution to this problem. Just bumping this post to see if anyone found a real solution or something.

I've written a keyboard mapping program and a Persian typography program that helps users to type Persian in any graphical suits (Persian is not supported in 3D graphical suits). It was downloaded 20669 times in the first month and around 5000 times every month after that.

You can see it here: http://www.parsinegar.com

When the keyboard mapping program is enabled it will type Persian system-wide and it works very well. But the damn shift gets stuck sometimes. And because this will be used as a system-wide keyboard, shift getting stuck is not an option.

Any help is greatly appreciated. :)

Edited by leomoon
Link to comment
Share on other sites

I've seen something similar where my script was interacting with an external application. I initially encountered the Control key getting "stuck" while using FF.au3 / mozrepl to interact with FF. Initially, I worked around the issue by waiting for the Control key to be released before making the call to FF.au3.

I ultimately ended up forcing the modifier keys to their up position using

Send("{SHIFTUP}{CTRLUP}{ALTUP}")
Link to comment
Share on other sites

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Tnx for the replies. I've seen all of these methods and the best one is _SendEx but it can not be used. It's a full remapped keyboard and shift+[Key] will be used by user and when I read the _SendEx code it sends the string $ss after the Shift Alt and Ctrl keys are released. So I'm guessing there is still no solution for autoit to prevent keys getting stuck.

Link to comment
Share on other sites

You misunderstand how the function works. It's not for sending the string so much as for not locking the Shift/Ctrl/Alt keys down. You send the function the keys you want it to send, with the shift key included, like you would do it for the Send command. so instead of using Send("+k") to send the Shifted K, you use SendEx("+k") in your hotkey function. So that the Send command isn't done until the Shift key is released.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

  • 2 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...