TextFieldUtil

Kind of class: public class
Package:
Inherits from:
  • none
Version: 09/06/09
Author: Aaron Clinger, Mike Creighton
Classpath: org.casalib.util.TextFieldUtil
File last modified: Monday, 10 October 2011, 16:41:07
► View source▼ Hide source
/*
    CASA Lib for ActionScript 3.0
    Copyright (c) 2011, Aaron Clinger & Contributors of CASA Lib
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:
    
    - Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    
    - Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    
    - Neither the name of the CASA Lib nor the names of its contributors
      may be used to endorse or promote products derived from this software
      without specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/
package org.casalib.util {
    import flash.text.TextField;
    import flash.text.TextFormat;
    import org.casalib.util.StringUtil;
    
    /**
        Utilities for working with TextFields.
        
        @author Aaron Clinger
        @author Mike Creighton
        @version 09/06/09
    */
    public class TextFieldUtil {
        
        
        /**
            Determines if textfield has more text than can be displayed at once.
            
            @param field: Textfield to check for text overflow.
            @return Returns true if textfield has text overflow; otherwise false.
        */
        public static function hasOverFlow(field:TextField):Boolean {
            return field.maxScrollV > 1 || field.maxScrollH > 1;
        }
        
        /**
            Applies the supplied TextFormat to all upper case letters then upper cases all lower case characters.
            
            @param field: TextField to convert to small caps.
            @param largeFormat: The format you wish to apply to the upper case letters (usually a larger text size).
            @example
                
                    var small:TextFormat = new TextFormat();
                    var large:TextFormat = new TextFormat();
                    
                    small.size = 15;
                    large.size = 30;
                    
                    var title:TextField = new TextField();
                    title.autoSize      = TextFieldAutoSize.LEFT;
                    title.text          = "This Text is Small Caps.";
                    title.setTextFormat(small);
                    
                    TextFieldUtil.formatSmallCaps(title, large);
                    
                    this.addChild(title);
                
            @see TextFieldUtil#classSmallCaps
        */
        public static function formatSmallCaps(field:TextField, largeFormat:TextFormat):void {
            var copy:String = field.text;
            var l:int       = copy.length;
            var char:String;
            
            field.text = copy.toUpperCase();
            
            while (l--) {
                char = copy.charAt(l);
                
                if (!StringUtil.isPunctuation(char) && !StringUtil.isLowerCase(char) || StringUtil.isNumber(char))
                    field.setTextFormat(largeFormat, l, l + 1);
            }
        }
        
        /**
            Adds the supplied CSS class to all upper case letters then upper cases all lower case characters. The function works by wrapping each upper case letter in a span tag with the defined class name applied.
            
            @param field: TextField to convert to small caps.
            @param largeClass: The CSS class name you wish to apply to the upper case letters.
            @example
                
                    var smallCapsStyle:StyleSheet = new StyleSheet();
                    smallCapsStyle.parseCSS("p {font-size:15px;} .smallCaps {font-size:30px;}");
                    
                    var title:TextField = new TextField();
                    title.autoSize      = TextFieldAutoSize.LEFT;
                    title.styleSheet    = smallCapsStyle;
                    title.htmlText      = "

This Text is Small Caps.

"; TextFieldUtil.classSmallCaps(title, "smallCaps"); this.addChild(title);
@see TextFieldUtil#formatSmallCaps */ public static function classSmallCaps(field:TextField, largeClass:String):void { var copy:String = field.htmlText; var l:int = copy.length; var char:String; var tag:Boolean; while (l--) { char = copy.charAt(l); if (char == '>') tag = true; if (char == '<') tag = false; if (tag) continue; if (!StringUtil.isPunctuation(char, false) && !StringUtil.isLowerCase(char) || StringUtil.isNumber(char)) copy = StringUtil.replaceAt(copy, l, '' + char + ''); else copy = StringUtil.replaceAt(copy, l, char.toUpperCase()); } field.htmlText = copy.toUpperCase(); } /** Removes text overflow on a textfield with the option of an ommission indicator. @param field: Textfield to remove overflow. @param omissionIndicator: Text indication that an omission has occured, normally "..."; defaults to no indication. @return Returns the omitted text; if there was no text ommitted function returns a empty String (""). @usageNote The TextField cannot contain HTML text. */ public static function removeOverFlow(field:TextField, omissionIndicator:String = ""):String { if (!TextFieldUtil.hasOverFlow(field)) return ''; omissionIndicator ||= ''; var originalCopy:String = field.text; var lines:Array = field.text.split('. '); var isStillOverflowing:Boolean = false; var words:Array; var lastSentence:String; var sentences:String; var overFlow:String; while (TextFieldUtil.hasOverFlow(field)) { lastSentence = String(lines.pop()); field.text = (lines.length == 0) ? '' : lines.join('. ') + '. '; } sentences = (lines.length == 0) ? '' : lines.join('. ') + '. '; words = lastSentence.split(' '); field.appendText(lastSentence); while (TextFieldUtil.hasOverFlow(field)) { if (words.length == 0) { isStillOverflowing = true; break; } else { words.pop(); if (words.length == 0) field.text = sentences.substr(0, -1) + omissionIndicator; else field.text = sentences + words.join(' ') + omissionIndicator; } } if (isStillOverflowing) { words = field.text.split(' '); while (TextFieldUtil.hasOverFlow(field)) { words.pop(); field.text = words.join(' ') + omissionIndicator; } } overFlow = originalCopy.substring(field.text.length); return (overFlow.charAt(0) == ' ') ? overFlow.substring(1) : overFlow; } } }
Utilities for working with TextFields.

Summary

Class methods
  • hasOverFlow (field:TextField) : Boolean
    • Determines if textfield has more text than can be displayed at once.
  • formatSmallCaps (field:TextField, largeFormat:TextFormat) : void
    • Applies the supplied TextFormat to all upper case letters then upper cases all lower case characters.
  • classSmallCaps (field:TextField, largeClass:String) : void
    • Adds the supplied CSS class to all upper case letters then upper cases all lower case characters.
  • removeOverFlow (field:TextField, omissionIndicator:String = "") : String
    • Removes text overflow on a textfield with the option of an ommission indicator.

Class methods

classSmallCaps

static function classSmallCaps(field:TextField, largeClass:String) : void

Adds the supplied CSS class to all upper case letters then upper cases all lower case characters. The function works by wrapping each upper case letter in a span tag with the defined class name applied.

Parameters
field :TextField to convert to small caps.
largeClass:The CSS class name you wish to apply to the upper case letters.
Example
  • var smallCapsStyle:StyleSheet = new StyleSheet();
    smallCapsStyle.parseCSS("p {font-size:15px;} .smallCaps {font-size:30px;}");
    
    var title:TextField = new TextField();
    title.autoSize      = TextFieldAutoSize.LEFT;
    title.styleSheet    = smallCapsStyle;
    title.htmlText      = "<p>This Text is Small Caps.</p>";
    
    TextFieldUtil.classSmallCaps(title, "smallCaps");
    
    this.addChild(title);
    

formatSmallCaps

static function formatSmallCaps(field:TextField, largeFormat:TextFormat) : void

Applies the supplied TextFormat to all upper case letters then upper cases all lower case characters.

Parameters
field :TextField to convert to small caps.
largeFormat:The format you wish to apply to the upper case letters (usually a larger text size).
Example
  • var small:TextFormat = new TextFormat();
    var large:TextFormat = new TextFormat();
    
    small.size = 15;
    large.size = 30;
    
    var title:TextField = new TextField();
    title.autoSize      = TextFieldAutoSize.LEFT;
    title.text          = "This Text is Small Caps.";
    title.setTextFormat(small);
    
    TextFieldUtil.formatSmallCaps(title, large);
    
    this.addChild(title);
    

hasOverFlow

static function hasOverFlow(field:TextField) : Boolean

Determines if textfield has more text than can be displayed at once.

Parameters
field:Textfield to check for text overflow.
Returns
  • Returns true if textfield has text overflow; otherwise false.

removeOverFlow

static function removeOverFlow(field:TextField, omissionIndicator:String = "") : String

Removes text overflow on a textfield with the option of an ommission indicator.

Parameters
field :Textfield to remove overflow.
omissionIndicator:Text indication that an omission has occured, normally "..."; defaults to no indication.
Returns
  • Returns the omitted text; if there was no text ommitted function returns a empty String ("").
Usage note
  • The TextField cannot contain HTML text.