0001 function gui_targ_menu_cbk(src,eventdata,options) 0002 switch(get(src,'tag')) 0003 case 'file', 0004 % Load auditory target by file 0005 browse_files; 0006 0007 case 'synth', 0008 % Load auditory target by simple creation tool 0009 synthTarget; 0010 case 'mic', 0011 % Load auditory target by microphone 0012 end 0013