Jump to content

SirHaschke

Members
  • Posts

    18
  • Joined

  • Last visited

SirHaschke's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. The installation is english. After that if i start the 7 Zip filemanager it is on a dutch machine german !! After that i import an reg key an then the language of 7Zip is dutch.
  2. In my case it was a dutch machine.
  3. OK. The output is C:Program Files Thanks for your help.
  4. Bingo. Run(@ProgramFilesDir & "7-Zip7zFM.exe") works fine. But why not Run("C:Program Files7-Zip7zFM.exe")? Thanks in advance.
  5. Thats correct, but the standard language in 7-Zip is german. After the AutoIt skript i chang it to netherlands via reg key.
  6. Hello, how can i see the console output?
  7. Hello, on my german XP Station i create this script: Run("7z920.exe") WinWaitActive("7-Zip 9.20 Setup") Send("{ENTER}") WinWaitActive("7-Zip 9.20 Setup","&Finish") Send("{ENTER}") Run("C:\Programme\7-Zip\7zFM.exe") WinWaitActive("7-Zip Dateimanager") Send("{ALTDOWN}") Send("!e") Send("!o") Send("{ALTUP}") WinWaitActive("Optionen") Send("!m") Send("{TAB}") Send("{TAB}") Send("{ENTER}") WinWaitActive("7-Zip Dateimanager") Send("{ALTDOWN}") Send("!d") Send("!e") Send("{ALTUP}") On my netherland test system i try this. The installations starts and the script stops here: Run("C:\Programme\7-Zip\7zFM.exe") I change the line to Run("C:\Program Files\7-Zip\7zFM.exe") but this doesn't solve my problem. Any idea why my script stops at this point? Thanks Dennis
  8. I have the solution :-) I must create a loop. This is the final script: WinActivate ("smartFIX 4.1 Client - Willkommen") Send("!w") WinWaitActive("smartFIX 4.1 Client - Client-Komponenten") Send("!w") WinWaitActive("smartFIX 4.1 Client - Clienttyp") Send("!v") Send("!w") WinWaitActive("smartFIX 4.1 Client - smartFIX Server Name") Send("W8KBDF14") Send("!w") WinWaitActive("smartFIX 4.1 Client - Bereit") Send("!i") $h = 0 While $h <= 500 Send("!f") $h = $h + 1 WEnd WinWaitActive("smartFIX 4.1 Client Installer") Send("!f") WinWaitActive("smartFIX 4.1 Client Installerinformationen") Send("!j") Thanks for your help. Dennis
  9. OK. If i run the script i see in the taskbar smartfix.au3 Line23: WinWait($title, $text)
  10. OK. I try the script from MHZ. Negative. It doesn't work. Same error :-(
  11. OK. I do it with Scite and F5. I run the script (see attachment). In the taskbar stands "smartfix.au3 Line16: WinWaitActive("smartFIX 4.1 Client Installerinformationen")
  12. OK. How can i run it not compiled?
  13. OK, i do this: Opt("TrayIconDebug", 1) WinActivate ("smartFIX 4.1 Client - Willkommen") Send("!w") WinWaitActive("smartFIX 4.1 Client - Client-Komponenten") Send("!w") WinWaitActive("smartFIX 4.1 Client - Clienttyp") Send("!v") Send("!w") WinWaitActive("smartFIX 4.1 Client - smartFIX Server Name") Send("W8KBDF14") Send("!w") WinWaitActive("smartFIX 4.1 Client - Bereit") Send("!i") WinWaitActive("smartFIX 4.1 Client Installer") Send("!f") WinWaitActive("smartFIX 4.1 Client Installerinformationen") Send("!j") Do you mean the icon in the task bar? If i put my mouse cursor over it i see only smartfix.exe.
  14. @ John One. Like That? WinActivate ("smartFIX 4.1 Client - Willkommen") Send("!w") WinWaitActive("smartFIX 4.1 Client - Client-Komponenten") Send("!w") WinWaitActive("smartFIX 4.1 Client - Clienttyp") Send("!v") Send("!w") WinWaitActive("smartFIX 4.1 Client - smartFIX Server Name") Send("W8KBDF14") Send("!w") WinWaitActive("smartFIX 4.1 Client - Bereit") Send("!i") sleep (5000) winactivate("smartFIX 4.1 Client Installer") Send("!f") WinWaitActive("smartFIX 4.1 Client Installerinformationen") Send("!j") @Jos Like this? WinActivate ("smartFIX 4.1 Client - Willkommen") Send("!w") WinWaitActive("smartFIX 4.1 Client - Client-Komponenten") Send("!w") WinWaitActive("smartFIX 4.1 Client - Clienttyp") Send("!v") Send("!w") WinWaitActive("smartFIX 4.1 Client - smartFIX Server Name") Send("W8KBDF14") Send("!w") WinWaitActive("smartFIX 4.1 Client - Bereit") Send("!i") Opt("WinTitleMatchMode", 3) WinWaitActive("smartFIX 4.1 Client Installer") Send("!f") WinWaitActive("smartFIX 4.1 Client Installerinformationen") Send("!j") Both doesn't help :-(
  15. If i press ALT + F the script continues and runs normaly with the next Send("!j") command.
×
×
  • Create New...