mytxt.text = "You use...";
photoshopcb.addEventListener(MouseEvent.CLICK, changelist);
flashcb.addEventListener(MouseEvent.CLICK, changelist);
illustratorcb.addEventListener(MouseEvent.CLICK, changelist);
dreamweavercb.addEventListener(MouseEvent.CLICK, changelist);
function changelist (event:MouseEvent):void{
mytxt.text = "You use...\n";
if(photoshopcb.selected == true) mytxt.appendText(photoshopcb.label + "\n");
if(flashcb.selected == true) mytxt.appendText(flashcb.label + "\n");
if(illustratorcb.selected == true) mytxt.appendText(illustratorcb.label + "\n");
if(dreamweavercb.selected == true) mytxt.appendText(dreamweavercb.label + "\n");
}