For some reason Microsoft Visual Studio is not keeping my comments for each line of code in order. When I open the file in Notepad all lines are correct. I have 100's of lines of code and need to have them in order.
Thanks,
EDC
Code: Select all
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
coordmode, mouse, screen ;coordmode, location on monitor
mousegetpos, startX, startY ;mousegetpos, location of mouse on screen
send, {f7} ;sends f7
sleep, 50 ;sleeps
mouseclick, left, 1987, 1214 ;L Click
sleep, 50 ;sleeps
send, {f6} ;send f6
sleep, 50 ;sleeps
mouseclick, left, 1981, 1292 ;mouse click x, y
sleep, 20 ;sleeps
send, {f5} ;send f5
mousemove, startX, startY ;mousemove to mousegetpos
Home::Reload ;Reload Script
Return ;Return
Insert::Edit ;Edit Script
Return ;Return
End::ExitApp ;Exit Application
Return ;Return