dexto Posted May 12, 2009 Share Posted May 12, 2009 Just noticed that some of the multimedia keyboard keys are not documented for _isPressed() A6 Browser Back A7 Browser Forward A9 Browser Stop A8 Browser Reload AC Browser Homepage AD Sound Mute B0 Player Next B1 Player Previous B2 Player Stop B3 Player Start/Pause B4 Mail Client B5 Player Open B6 My Computer B7 Calculator Link to comment Share on other sites More sharing options...
Yashied Posted May 12, 2009 Share Posted May 12, 2009 Just noticed that some of the multimedia keyboard keys are not documented for _isPressed()A6 Browser BackA7 Browser ForwardA9 Browser StopA8 Browser ReloadAC Browser HomepageAD Sound MuteB0 Player NextB1 Player PreviousB2 Player StopB3 Player Start/PauseB4 Mail ClientB5 Player OpenB6 My ComputerB7 Calculator Any of this list. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More... Link to comment Share on other sites More sharing options...
dexto Posted May 12, 2009 Author Share Posted May 12, 2009 (edited) I bet its there Didn't know about that page so: #include <Misc.au3> $dll = DllOpen('user32.dll') While True For $x = 0 To 255 If _IsPressed(Hex($x, 2), $dll) Then ConsoleWrite(Hex($x, 2)) While _IsPressed(Hex($x, 2), $dll) Sleep(1) WEnd EndIf Next Sleep(1) WEnd Func OnAutoItExit() DllClose($dll) Exit EndFunc ;==>OnAutoItExit Edited May 12, 2009 by dexto Link to comment Share on other sites More sharing options...
Yashied Posted May 12, 2009 Share Posted May 12, 2009 And what is your question. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More... Link to comment Share on other sites More sharing options...
dexto Posted May 12, 2009 Author Share Posted May 12, 2009 no question just comment 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