Jump to content

Recommended Posts

Posted

whats wrong with this code?

$title = 'Device Manager'
Run(@SystemDir & '\mmc.exe ' &  @SystemDir & '\devmgmt.msc', @SystemDir)
ProcessWait('mmc.exe')
WinActivate($title)
WinWaitActive($title)
WinMove($title, '', 50, 20, @DesktopWidth - 100, @DesktopHeight - 100)
Sleep(2000)
Send('!vw{TAB}*{TAB}{HOME}')

its working but the asterisk doesnt, why?

Posted (edited)

LOL, You should not have said "its working but the asterisk doesnt, why?" then

What is this script supposed to do?

EDIT: Where do you want to send the text?

Edited by danwilli
Posted (edited)

$title = 'Device Manager'
Run(@SystemDir & '\mmc.exe ' &  @SystemDir & '\devmgmt.msc', @SystemDir)
ProcessWait('mmc.exe')
WinActivate($title)
WinWaitActive($title)
WinMove($title, '', 50, 20, @DesktopWidth - 100, @DesktopHeight - 100)
Sleep(2000)
Send('!vw{tab}')
For $times = 1 to 20
    Send("{Down}")
Next
For $times = 1 to 20
    Send("{Right}{Up}")
Next

Works

EDIT: What is the "*" for then

Edited by danwilli
Posted (edited)

Got it :whistle:

$title = 'Device Manager'
Run(@SystemDir & '\mmc.exe ' &  @SystemDir & '\devmgmt.msc', @SystemDir)
ProcessWait('mmc.exe')
WinActivate($title)
WinWaitActive($title)
WinMove($title, '', 50, 20, @DesktopWidth - 100, @DesktopHeight - 100)
Sleep(2000)
Send('!vw{tab}{NUMPADMULT}') ; "*" will not work because the key you are looking for is "multiply"

EDIT: * = shift 8

Edited by danwilli

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
×
×
  • Create New...