Func INS Details() ;Open INS details Send("^u") ;wait 10 seconds for Details to appear. Local $wINS = WinWait("","", 10) ;Retrieve the position as well as the height and width of the INS detail window. We will use this when we have to move the window back to the origional position. Local $wPOS = WinGetPos($wINS) ;Move Details to the x, y position 0,0 and set the height and width at 500,1000. Winmove("", "",0,0,500,1000, 10) EndFunc #cs #include ; Left click drag from 770, 769, to 904, 878 MouseClickDrag($MOUSE_CLICK_LEFT, 670, 670, 881, 874) Sleep(10) MouseClickDrag($MOUSE_CLICK_LEFT, 670, 670, 881, 874) #ce