试图将TextFormat传递给其他类,得到错误

时间:2009-11-17 18:15:26

标签: actionscript-3 flash text textfield text-formatting

欢乐星期二大家:)

我注意到我在几个Sub Classes中再次使用相同的字体,所以我想我只需要创建字体类来处理所有这些字体。

无论如何,我正在摸索如何将我在 Fonts类中创建的TextFormats干净利落地放到我的其他类中。我不相信我这样做是正确的,但目前我收到这个错误信息:

footFont = null TypeError:错误#2007:参数格式必须为非null。

我想将avant97 TextFormat传递给我的Frame Class来设置Footer文本的样式

以下是我的字体类。

package src.model 
{
    import flash.text.*;

    public class Fonts
    {
        public static var data:Object = {};
        public static var avant97 = new TextFormat(); // Footer copy
        public static var avantFF = new TextFormat(); // Navigation Copy
        public static var avant0s = new TextFormat(); // Thumbnail Titles

        avant97.font  = (new AvantGrande() as Font).fontName;
        avant97.size  = 16;
        avant97.color = 0x979797;
        avant97.align = TextFormatAlign.CENTER;

        avantFF.font  = (new AvantGrande() as Font).fontName;
        avantFF.size  = 16;
        avantFF.color = 0xFFFFFF;
        avantFF.align = TextFormatAlign.CENTER;

        avant00.font  = (new AvantGrande() as Font).fontName;
        avant00.size  = 16;
        avant00.bold  = true;
        avant00.color = 0x000000;
        avant00.align = TextFormatAlign.LEFT;
    }

}

alt text


这是我的Frame类,我正在尝试将avant97附加到TextField:

package src.display{

import flash.text.*;
import flash.display.*;
import flash.geom.Matrix;
import flash.events.Event;

// ☼ --- Imported Classes
import src.events.CustomEvent;
import src.model.Fonts;

public class Frame extends Sprite {

    private var footer:Sprite = new Sprite();
    private var fnt:Fonts; // <- var for Fonts Class
    private var footFont:TextFormat; // var to hold avant97

    // ☼ --- Constructor
    public function Frame():void {
        this.addEventListener(Event.ADDED_TO_STAGE, init);
    }

    // ☼ --- Init
    public function init():void {

        fnt = new Fonts(); // init the Fonts class
        //fnt.data.avant97 = footFont; // trying to get avant97
        Fonts.data.avant97 = footFont;  // Changed per 1st answer
        trace("footFont = "+footFont); // Fail

        footer.graphics.beginFill(0x000);
        footer.graphics.drawRect(0,0,800,56);
        footer.graphics.endFill();
        footer.y = stage.stageHeight - footer.height;

        var footText:TextField = new TextField();
        footText.defaultTextFormat = footFont; // Fail x 2!
        footText.antiAliasType = flash.text.AntiAliasType.NORMAL;
        footText.selectable = false;
        footText.mouseEnabled = false;
        footText.wordWrap = true;
        footText.width = 800;
        footText.height = 30;
        footText.text = footCopy;

        // ☼ --- Place Footer & Copy
        footer.addChild(footText);

        addChild(footer);

        trace("Frame added --- √"+"\r");
        this.removeEventListener(Event.ADDED_TO_STAGE, init);
    }

}

}

基本上我从[这里]得到了[静态var数据对象的想法] [2] 但也许他的例子仅适用于实际数据?不是TextFormats?

这是我再次遇到的错误: footFont = null TypeError:错误#2007:参数格式必须为非null。

2 个答案:

答案 0 :(得分:2)

如果您只是想让文本格式与其他代码分开,您应该将您的Fonts类视为“静态”(不应该实例化)。 Fonts类的所有方法和属性都将被引用,如Fonts.method()Fonts.property。

private footFont : TextFormat = Fonts.avant97;

应该注意的是,除非您要编辑其属性,否则无需创建avant97的副本。您可以简单地使用Fonts.avant97代替footFont。

答案 1 :(得分:1)

将fnt.data更改为Fonts.data,因为它是静态变量