jan_flanders

Untitled

Sep 5th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     public function apply(textField:TextField, beginIndex:Int=-1, endIndex:Int=-1):Void{
  2.         //why
  3.         advancedProperties.apply(textField);
  4.          
  5.          //textField.setTextFormat(textFormat, beginIndex, endIndex);
  6.          //textField.defaultTextFormat = textFormat;
  7.    
  8.     }
  9. //changed to:
  10. public function apply(textField:TextField, beginIndex:Int=-1, endIndex:Int=-1):Void{
  11.         //why
  12.         advancedProperties.apply(textField);
  13.             #if(flash9)
  14.          textField.setTextFormat(textFormat, beginIndex, endIndex);
  15.           textField.defaultTextFormat = textFormat;
  16.     #end
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment