I use vb6 but w/e
Declarations(I think this is all of them xD)
Code:Private Declare Function FindWindowEx Lib "user32.dll" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String _ ) As Long Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" (ByVal hwnd As Long, _ ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long Private Type POINTAPI X As Long y As Long End Type Private Declare Function ClientToScreen Lib "user32" (ByVal hwnd As Long, lpPoint As POINTAPI) As Long Private Declare Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer
The arrow movement:
Code:Dim X As Integer Dim hwnd As Long Dim y As Integer Dim blah As Long Dim timeval As Long Const WM_KEYDOWN = &H100 'gets the hwnd of the flash control used spy++ hwnd = FindWindowEx(Form1.hwnd, 0, "MacromediaFlashPlayerActiveX", vbNullString) y = 0 Do X = 0 Do blah = PostMessage(hwnd, WM_KEYDOWN, vbKeyLeft, 0) SecondsToWait (1) X = X + 1 Loop Until X >= 10 X = 0 Do blah = PostMessage(hwnd, WM_KEYDOWN, vbKeyRight, 0) SecondsToWait (1) X = X + 1 L = L + 1 Loop Until X >= 10 Loop Until L = 350
Results 1 to 16 of 16
Thread: Sending Keys
Threaded View
- 02 Jul. 2010 04:44am #15
Moderator Bachelor of Science in Virginity
- Age
- 31
- Join Date
- Nov. 2009
- Location
- Toronto
- Posts
- 5,421
- Reputation
- 546
- LCash (Rank 3)
- 1.96