summaryrefslogtreecommitdiff
path: root/bPod/com/events/RightClick.as
blob: df5f5d10739c412032595b827acad3668fc88d13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class com.events.RightClick {

	private var rcMenu:ContextMenu;

	public function RightClick () {
		rcMenu	=	new ContextMenu();
		rcMenu.hideBuiltInItems();
		rcMenu.customItems.push (new ContextMenuItem ("(c) 2007 carbon pictures", vanityPlate));
		_root.menu = rcMenu;
	} 

	private function vanityPlate():Void {
//		getURL("https://www.carbonpictures.com/cgi-bin/bucky/profile?username=tfarnon");
	}
}