MENU "Global Commands" {
	STATE "Global Commands" GLOBAL {
		COMMAND "Move Window <Direc> <1To50>" {
			SCRIPT {
				SendKeys "{Alt+Space}m"
				SendKeys "{" + _arg1 + " " + _arg2 + "}{Enter}"
			}
		}

		COMMAND "Move Window <Direct> <1To50> <Direct> <1To50>" {
			SCRIPT {
				SendKeys "{Alt+Space}m"
				SendKeys "{" + _arg1 + " " +_arg2 + "}{" + _arg3 + " " + _arg4 + "}{Enter}"
			}
		}

		LIST "1To50" {
			"Right"
			"Left"
			"Up"
			"Down"
		}

		LIST "1To50" {
			"1"
			"2"
			"3"
			"4"
			"5"
			"6"
			"7"
			"8"
			"9"
			"10"
			"11"
			"12"
			"13"
			"14"
			"15"
			"16"
			"17"
			"18"
			"19"
			"20"
			"21"
			"22"
			"23"
			"24"
			"25"
			"26"
			"27"
			"28"
			"29"
			"30"
			"31"
			"32"
			"33"
			"34"
			"35"
			"36"
			"37"
			"38"
			"39"
			"40"
			"41"
			"42"
			"43"
			"44"
			"45"
			"46"
			"47"
			"48"
			"49"
			"50"
			"60"
			"70"
			"80"
			"90"
			"100"
		}
	}
}