hello all i want to transmit a string to variable by when i highlight a string contexmenu and click right mouse to choose "search" function which is the same "copy" function. i done in the following.
public function clone():ContextMenu;
private function search(evt:ContextMenuEvent):void
{
var searchString:String;;
searchString = clone();
}
but it didn't. can you guide for me, please.
Thanks!

