Regardless, if you want to use AutoIt, this script should work:
Code:
$the_end_of_time = False

HotKeySet("!+^G", "DoMacro")
Do
	Sleep(120000)
Until ($the_end_of_time)

Func DoMacro()
	Send("{CTRLUP}{SHIFTUP}{ALTUP}{LALT}ge")
EndFunc

The "{CTRLUP}{SHIFTUP}{ALTUP}" at the beginning of the stuff to send is to clear the keys you might be holding down to activate the macro.
_________________________
Bitt Faulk