Auto Hotkey

From bernie's
Revision as of 15:14, 27 May 2015 by Bernie (talk | contribs) (Created page with "==Maxwell fire== <pre> ; makes maya front app ; skip 4 frames, wait 2 minutes, send shortcut (save to renderview/server) ; do that 100 times (400 frames) IfWinExist, Autodesk...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Maxwell fire

; makes maya front app
; skip 4 frames, wait 2 minutes, send shortcut (save to renderview/server)
; do that 100 times (400 frames)

IfWinExist, Autodesk Maya
    WinActivate ; use the window found above
	
Loop, 100
{

	Send {!}
	Send {!}
	Send {!}
	Send {!}
	Sleep, 120000
	Send ^!{F9}

}