Newscritpz Posted January 15, 2015 Share Posted January 15, 2015 (edited) I'm tring to arrange the windows to play more comfortably with more poker tables opened. It works but when two tables have the exact same title it doesn' arrange some, or two tables are overlapped. So I've tried to use WinGetHandle to differenciate between them but I'm still missing something, can someone help me please? Func Arrange() $var = WinList() local $x=0 local $y=-10 local $Nwindows=0 For $i = 1 to $var[0][0] $title="5max" $result1 = StringInStr($var[$i][0], $title) if ($result1 > 0) Then if $Nwindows=3 Then $x=0 $y=480 EndIf $handle = WinGetHandle($var[$i][0]) WinMove($handle, "",$x,$y,640,480) $x=$x+640 $Nwindows=$Nwindows+1 EndIf Next EndFunc Edited January 15, 2015 by Newscritpz Link to comment Share on other sites More sharing options...
mikell Posted January 15, 2015 Share Posted January 15, 2015 $handle = $var[$i][1] Newscritpz 1 Link to comment Share on other sites More sharing options...
Newscritpz Posted January 15, 2015 Author Share Posted January 15, 2015 Ouch I didn't noticed that thanks 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