Jump to content

Toug

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by Toug

  1. Can't launch telnet with Run("telnet server") nothing occur. Why?
  2. Used it, works great. Thanks.
  3. Hi, I don't understand why my script doesn't launch IE: #include <MsgBoxConstants.au3> AutoItSetOption("WinTitleMatchMode", 1) Local $iPID $iPID = Run("iexplorer.exe","C:\Program Files (x86)\Internet Explorer") MsgBox ( $MB_SYSTEMMODAL, "Valeur retournée", $iPID ) The returned value is still 0 and IE is not started. I'm running Win7 x64. I tried: but don't start ie neither: #include <MsgBoxConstants.au3> AutoItSetOption("WinTitleMatchMode", 1) Local $iPID $iPID = Run("C:\Program Files (x86)\Internet Explorer\iexplorer.exe") MsgBox ( $MB_SYSTEMMODAL, "Valeur retournée", $iPID )
  4. Hi I want to do something if a windows exist. But the name of the windows is not always the same. It starts with "emacs:" I have tried many things but none worked. The last I have tried : If WinExists("[TITLE:*emacs*]","") Then MsgBox(0,"","Une fenêtre active existe") EndIf Thanks in advance.
×
×
  • Create New...