Jump to content

sondo2121

Members
  • Posts

    11
  • Joined

  • Last visited

sondo2121's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thanks for sharing this script, every time this happens I get a call, and usually find some other way to get around it, but this makes my job even easier. Thanks
  2. Can you somehow pass arguments to an executable to have it be read by the script? Thanks William
  3. Alright i figured it out, thanks for you help.. it just so happens that the 1st box that you see is the classic blue WISE install box...that has the same title as the one i was looking for therefore it was returning 0. i have corrected my code, thanks.
  4. I had it sleep for 5 seconds and it appears to be working now? Why wouldn't WinWait work? Code now: Func AdAware_Install() Local $path = "\\***.***.42.137\programs$\PC\AdAware\Adaware SE Personal V1.06.exe" Run($path) Sleep(5000) WinWait( "Ad-Aware SE Personal", "") ControlClick ( "Ad-Aware SE Personal", "", "Button1" ) EndFunc
  5. I tried winwaitactive and winwait and it still doesn't work. I know i have the correct Button, and that it should work, should I be using ControlFocus at all?
  6. This is what i'm doing, and it still isn't working Func AdAware_Install() Local $path = "\\***.***.42.137\programs$\PC\AdAware\Adaware SE Personal V1.06.exe" Run($path) ControlClick ( "Ad-Aware SE Personal", "", "Button1" )
  7. I am trying to make an automated install program and when I use the autoIt info tool and get: Control ID: 10 ClassNameNN: Button4 How do I check that button, and then click 'Next' Which is: Control ID: 3 ClassNameNN: Button1 Thanks EDIT: I think i know how to check a box or radio button, but how to i click the 'next button'...i know how to do it with the ALT+N way, but i'd like to do it in the ControlCommand if possible.
  8. Is there a way to find out if there is a certain CD in a CD drive by the Name of the CD? Thanks in advance, William
  9. Thanks. i also did this and it works too: $Illegal_Characters[25] = """"
  10. I was wondering what the special character would be to make this work: $Illegal_Characters[25] = """ I have an array of illegal characters for my script and was wondering how you could use the " in an array. -Thanks in advance
×
×
  • Create New...