Jump to content

AdamSteele

Members
  • Posts

    5
  • Joined

  • Last visited

About AdamSteele

  • Birthday 01/01/1980

AdamSteele's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Encryption is your answer. Specifically, Asymmetric Public-Private key encryption. You'll have a tough job implementing the protocol. The stronger your private key and it's bit depth, the tougher a malicious attacker's job will be at cracking your script. At a rough estimate a 256 bit grade encryption will take 30 years on an Opteron 2.2 Ghz machine. Adam PS: Some laws do not allow export of certain relevant algorithms. Sorry, guv.
  2. This will work. Try this. AutoItSetOption("WinTitleMatchMode", 2) $MyApp="JMP" _WinWaitActivate($MyApp,"",5) Func _WinWaitActivate($title,$text,$timeout=0) WinWait($title,$text,$timeout) If Not WinActive($title,$text) Then WinActivate($title,$text) WinWaitActive($title,$text,$timeout) EndFunc
  3. Yes. Citrix is a vastly different creature. Try this workaround I use. It's a pain but there it is... AutoItSetOption("MouseCoordMode", 1) $MyApp="- \\Remote" _WinWaitActivate($MyApp,"") $coords= WinGetPos($MyApp,"") MouseClickDrag("Left", $coords[0]+37,$coords[1]+15, 0, 0) Func _WinWaitActivate($title,$text,$timeout=0) WinWait($title,$text,$timeout) If Not WinActive($title,$text) Then WinActivate($title,$text) WinWaitActive($title,$text,$timeout) EndFunc
  4. Try this method I use to bypass 'The Citrix Limitation.' Instead of WinMove("Aspect Applications", "", 0, 36, 956, 829) Use the method outlined below. Adam. AutoItSetOption("MouseCoordMode", 1) $MyApp="Aspect Applications" _WinWaitActivate($MyApp,"") $coords= WinGetPos($MyApp,"") MouseClickDrag("Left", $coords[0]+37,$coords[1]+15, 0, 36) Func _WinWaitActivate($title,$text,$timeout=0) WinWait($title,$text,$timeout) If Not WinActive($title,$text) Then WinActivate($title,$text) WinWaitActive($title,$text,$timeout) EndFunc
  5. An excellent idea, It's a good little utility. Considering it's portable nature it's really amazing it works on files already present in any XP install. Thank you, Adam
×
×
  • Create New...