Flex 오른쪽 메뉴를 손쉽게 제어 할수 있는 API가 있었다.
아주 편리하다.
	        private function iniApp() : void {
				var items : ArrayCollection = new ArrayCollection();
				items.addItem( {caption: "Flex", command: onFlexLabelClickHandler} );
				ConfigurableContextMenuBuilder.build(this, items);
	        }
	        private function onFlexLabelClickHandler(event:Event) : void {
			}

+ Recent posts