realkiller Posted December 12, 2006 Share Posted December 12, 2006 winmove wont work with a citrix window i use now: WinMove("Aspect Applications", "", 0, 36, 956, 829) how can i make it work Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2 Link to comment Share on other sites More sharing options...
martin Posted December 12, 2006 Share Posted December 12, 2006 winmove wont work with a citrix window i use now: WinMove("Aspect Applications", "", 0, 36, 956, 829) how can i make it work Don't know, but have you tried this? Opt("WinTitleMatchMode", 2) WinMove("Aspect Applications", "", 0, 36, 956, 829) Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Link to comment Share on other sites More sharing options...
realkiller Posted December 12, 2006 Author Share Posted December 12, 2006 (edited) doesnt work:( is there a way to do it diffrent Edited December 12, 2006 by realkiller Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2 Link to comment Share on other sites More sharing options...
AdamSteele Posted November 23, 2010 Share Posted November 23, 2010 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 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now