diikee Posted May 7, 2008 Posted May 7, 2008 #include <IE.au3> $ip = InputBox("Get Ip Address", "Enter IP Address: ") $oIE = _IECreate($ip, 0) I want to use the ALT+F6 on the web interface that opens up. what's the trick to get ALT+F6 to shift to the browser and capture keystrokes to the script??
PsaltyDS Posted May 7, 2008 Posted May 7, 2008 #include <IE.au3> $ip = InputBox("Get Ip Address", "Enter IP Address: ") $oIE = _IECreate($ip, 0) I want to use the ALT+F6 on the web interface that opens up. what's the trick to get ALT+F6 to shift to the browser and capture keystrokes to the script?? $hIE = _IEPropertyGet($oIE, "HWND") ControlSend($hIE, "", "", "!{F6}") Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
spudw2k Posted May 7, 2008 Posted May 7, 2008 (edited) something like this? Opt("WinTitleMatchMode",2) WinWaitActive("Internet Explorer") Send("!{f6}") edit:PsaltyDS' is betta Edited May 7, 2008 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF
diikee Posted May 7, 2008 Author Posted May 7, 2008 thanks everyone for the prompt reply. I actually needed to download the latest build....Makes my work way easier
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