Jump to content

Recommended Posts

Posted (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 by Newscritpz

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...