computergroove Posted December 30, 2015 Share Posted December 30, 2015 https://www.autoitscript.com/autoit3/docs/libfunctions/_IsPressed.htmIf I try to run a script with the following I get an error:If _IsPressed(6F) Then;hex key for "/" msgbox(0,"","/") EndIfIt works when I am using a hexkey that doesn't have a letter in the character code. For instance:If _IsPressed(55) Then;hex key for "u" msgbox(0,"","u") EndIfThis works. Can I use the ascii dec character code instead of the hex code? Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html Link to comment Share on other sites More sharing options...
jdelaney Posted December 30, 2015 Share Posted December 30, 2015 "6F", not 6F IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window. Link to comment Share on other sites More sharing options...
BrewManNH Posted December 30, 2015 Share Posted December 30, 2015 You could also use the $VK_* constants in the WinAPIvkeysConstants.au3 file if you want to keep track of what keys you're looking for. This way, 6 months down the road, you won't have to open the help file just to remember what "6F" stands for. 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 GudeHow 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 More sharing options...
computergroove Posted December 30, 2015 Author Share Posted December 30, 2015 Would that be:#include <WinAPIvkeysConstants.au3> #include <MsgBoxConstants.au3> While 1 Sleep(100) WEND If _IsPressed($VK_*u) Then msgbox(0,"","u") EndIf Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html Link to comment Share on other sites More sharing options...
jdelaney Posted December 30, 2015 Share Posted December 30, 2015 No, an asterisk symbolizes that there are multiple defined variables with the prefix of $vk_...go find them.Not sure about your version, but mine are all defined in apiconstants.au3. IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window. Link to comment Share on other sites More sharing options...
BrewManNH Posted December 30, 2015 Share Posted December 30, 2015 (edited) Seriously? You're going to post that? Did you even LOOK in the file WinAPIvkeysConstants.au3?Instead of asking the question, wouldn't it have been MUCH faster to TEST it? Then you would have known that wasn't what I suggested at all. Edited December 30, 2015 by BrewManNH EDIT: this was in response to computergroove's post jdelaney 1 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 GudeHow 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 More sharing options...
computergroove Posted December 30, 2015 Author Share Posted December 30, 2015 Maybe I'm looking at the wrong thing. I opened the WinApivkeysConstants.au3 and I see Global Const $VK_U = 0x55 but is that just for an upper case U? There is no second entry for a lower case u. Is there a page that demonstrates the usage? Get Scite to add a popup when you use a 3rd party UDF -> http://www.autoitscript.com/autoit3/scite/docs/SciTE4AutoIt3/user-calltip-manager.html Link to comment Share on other sites More sharing options...
BrewManNH Posted December 30, 2015 Share Posted December 30, 2015 No there is no constant for upper/lower case keys, they're all the same. If you want to use shift with the U key, you'll have to use _IsPressed to look for each individually. _IsPressed (and by extension the function GetAsyncKeyState in user32.dll) doesn't care if the caps lock is on or not, it's just looking for the key scancode. So you can't test for upper or lower case letters being pressed.The usage page you're looking for is called the help file, look under _IsPressed for an example script. 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 GudeHow 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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now