var txtFormat:TextFormat = new TextFormat()
_root.symbols.largerFont.onRelease = function(){
_root.onEnterFrame = undefined;
}
_root.symbols.smallerFont.onRelease = function(){
_root.onEnterFrame = undefined;
}
_root.symbols.smallerFont.onPress = function(){
_root.onEnterFrame = function(){
txtFormat.size += -1;
_root.descr.descr_txt.setTextFormat(txtFormat);
}
};
_root.symbols.largerFont.onPress = function(){
_root.onEnterFrame = function(){
txtFormat.size += +1;
_root.descr.descr_txt.setTextFormat(txtFormat);
}
};