Skip to content

Instantly share code, notes, and snippets.

@sftblw
Created February 26, 2016 02:31
Show Gist options
  • Select an option

  • Save sftblw/c297a87695626a2786f4 to your computer and use it in GitHub Desktop.

Select an option

Save sftblw/c297a87695626a2786f4 to your computer and use it in GitHub Desktop.
autoprint.ahk for autoprinting reports in new SCH EMR
SetTitleMatchMode, 2
;SetMouseDelay, 0
coordmode, Mouse, Window
loop {
WinWait, 판독보고서
coordmode, Mouse, screen
MouseGetPos, mouseX, mouseY
coordmode, Mouse, Window
Send {Click 100, 100}
Sleep, 300
Send ^p
WinWait, 인쇄
ControlSend, 인쇄, {enter}
coordmode, Mouse, screen
MouseMove, %mouseX%, %mouseY%, 3
coordmode, Mouse, Window
WinClose, 판독보고서
WinWaitClose, 판독보고서
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment