Jump to content

rcc1968

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by rcc1968

  1. I eventually found my problem in the script and got in working - in a rather crude way. So for that I'm rather proud of myself... However, your script is much much nicer. I like how you can delete out your choice of skins from the original install. Thank you!
  2. My first post to MSFN... Been glued to this site for days. Anyways, I've been playing with the AutoIt script for WindowBlinds v4.5 and I'm stuck... Don't see how you manage to send keys or control clicks on the last dialog box (WindowsBlinds Advanced Configuration). When I manually install WindowBlinds, I can not use the keyboard to do anything on the last dialog box - no tab, no arrows, no funtion keys... Therefore, how can you script this? Here is the main part of my script... ; Enter Serial Number WinWaitActive ( "Enter WindowBlinds Serial Number" ) ControlSetText ( "Enter WindowBlinds Serial Number", "", "Edit1", $SN_1 ) ControlClick ( "Enter WindowBlinds Serial Number", "OK", "Button2" ) ; License WinWait ( "License Agreement", "", 1 ) If WinExists ( "License Agreement" ) Then WinActivate ( "License Agreement" ) ControlClick ( "License Agreement", "I Agree", "Button4" ) ControlClick ( "License Agreement", "&Next >", "Button1" ) EndIf ; Unload Application WinWaitActive ( "Unloading WindowBlinds" ) ControlClick ( "Unloading WindowBlinds", "&Yes, I Have Unloaded WindowBlinds >", "Button1" ) ; Welcome WinWaitActive ( "Welcome" ) ControlClick ( "Welcome", "&Next >", "Button1" ) ; Destination Location WinWaitActive ( "Choose Destination Location" ) ControlClick ( "Choose Destination Location", "&Next >", "Button1" ) ; Finish + Check And Extract Self Extracting Skin Archive WinWaitActive ( "Installation Complete" ) ControlClick ( "Installation Complete", "&Finish >", "Button3" ) ; Configuration WinWaitActive ( "WindowBlinds Advanced Configuration" ) **** This is last dialog box to choose and set skin... Got any ideas on what control click to send? Some code goes here. WinClose ( "WindowBlinds Advanced Configuration" ) ;Install WinWaitActive ( "Install" ) ControlClick ( "Install", "Cancel", "Button2" )
×
×
  • Create New...