I am new at this I mean at autoo it i just need your help i want to change my resolution Is this right? I mean check this I wanna change resolution of my script at starting and when my work is done I wanna change it back to normal so it is here can you tell me how can i do this .
IniWrite("RESsave.ini","Width","Default",@DesktopWidth)
IniWrite("RESsave.ini","Height","Default",@DesktopHeight)
IniWrite("RESsave.ini","Depth","Default",@DesktopDepth)
IniWrite("RESsave.ini","Refresh","Default",@DesktopRefresh)
$Width = 1280
$Height = 1024
$BitsPerPixel = 32
$RefreshRate = 75
_ChangeScreenRes (1280,1024,32,75)
HotKeySet("{Esc}", "Terminate")
Sleep(1000)
MouseMove (214,1002)
Sleep(500)
mouseclick ("left")
Sleep(500)
MouseClickDrag ("Left", 836, 472, 518, 520)
Sleep(7000)
MouseClickDrag ("Left", 967, 671, 703, 673)
Func Terminate()
Exit 0
EndFunc
$DRW = IniRead("RESsave.ini","Width","Default",@DesktopWidth)
$DRH = IniRead("RESsave.ini","Height","Default",@DesktopHeight)
$DD = IniRead("RESsave.ini","Depth","Default",@DesktopDepth)
$DR = IniRead("RESsave.ini","Refresh","Default",@DesktopRefresh)
_ChangeScreenRes($DRW,$DRH,$DD,$DR)
there is my script in b/w them so if u can help me by editing it and posting here only . here is a little screenshot of it http://prntscr.com/ljjl8 where you can see my problem.