1 2 3 4 5 6 7 8 9 10 11
| var formatGlobal12:TextFormat = new TextFormat ("_serif", 12);
txt_references_springbok_fr.setTextFormat (formatGlobal12);
var formatSelection12:TextFormat = new TextFormat ("_serif", 12);
formatSelection12.bold=true
formatSelection12.leading=0
function appliquerFormatSurSelection12 (e:MouseEvent):void
{
txt_references_springbok_fr.setTextFormat (formatSelection12, txt_references_springbok_fr.selectionBeginIndex, txt_references_springbok_fr.selectionEndIndex);
}
boutonAppliquer.addEventListener (MouseEvent.CLICK, appliquerFormatSurSelection12); |
Partager