Jump to content

_ISpressed()


Recommended Posts

hello, i have these code to see if a key is pressed, but it seem doesn't work, thanks

#include <Misc.au3>
#include <String.au3>
while 1
$String="ab"
$first=_StringToHex(StringLeft($String,1))
;msgbox(64,"",$first)-=> show '61' here
if _IsPressed($first) then
MsgBox(64,"","")
EndIf
WEnd

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

i've tried open dll before, but it still.

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

you first have to make the Char StringUpper, because the Keycode is the same as ASCII for uppercase char :)

#include <Misc.au3>
#include <String.au3>
$String="ab"
$first=Hex(Asc(StringUpper(StringLeft($String,1))),2)
while 1
;msgbox(64,"",$first)-=> show '61' here
if _IsPressed($first) then
MsgBox(64,"","")
EndIf
WEnd

*GERMAN* [note: you are not allowed to remove author / modified info from my UDFs]My UDFs:[_SetImageBinaryToCtrl] [_TaskDialog] [AutoItObject] [Animated GIF (GDI+)] [ClipPut for Image] [FreeImage] [GDI32 UDFs] [GDIPlus Progressbar] [Hotkey-Selector] [Multiline Inputbox] [MySQL without ODBC] [RichEdit UDFs] [SpeechAPI Example] [WinHTTP]UDFs included in AutoIt: FTP_Ex (as FTPEx), _WinAPI_SetLayeredWindowAttributes

Link to comment
Share on other sites

thanks, it worked !

[quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys

Link to comment
Share on other sites

hello, i have these code to see if a key is pressed, but it seem doesn't work, thanks

#include <Misc.au3>
#include <String.au3>
while 1
$String="ab"
$first=_StringToHex(StringLeft($String,1))
;msgbox(64,"",$first)-=> show '61' here
if _IsPressed($first) then
MsgBox(64,"","")
EndIf
WEnd
#Include <misc.au3>

While 1
GUIGetMsg()
For $i = 1 to 94
If _IsPressed(Hex($i)) Then MsgBox(0, "Key press!", "You pressed key number: " & $i)
Next
WEnd
Edited by ReaImDown
[u][font="Century Gothic"]~я α и d γ ĵ . ċ . ѕ қ ϊ и и ε я~- My Programs -auto shutdownSleep funcdisallow programs[/font][/u]
Link to comment
Share on other sites

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...