0

感谢 wezzy 和过去几天帮助我的其他人。我一直在听取他们的建议,并试图自己解决剩下的问题,但我又被困住了。

我有一个结构如下的txt文件:

button1_label
button2_label
button3_label

我的程序在运行时创建这 3 个按钮并将它们放在一个组中。

protected function onLoaded(e:Event):void {
                var myArrayOfLines:Array = e.target.data.split(/\n/);
                var tempBtn:Button;

                for(var i:Number = 0;i < myArrayOfLines.length;i++){
                    var j:Number = i+1;
                    tempBtn = new Button();
                    tempBtn.id = "btn" + i;
                    tempBtn.addEventListener(MouseEvent.CLICK, function(evt:MouseEvent):void{
                        var index:uint = parseInt(evt.currentTarget.id.replace("btn", ""));
                                    //TextArea code will go here

trace(text); // Traces null
                    });
                    tempBtn.label = myArrayOfLines[i];
                    btnArray.push(tempBtn);
                    group.addElement(btnArray[i]);
                }
            }

现在你可以从我的代码中看到我正在尝试让每个按钮将一个字符串打印到一个文本区域。我已经像这样构建了我的新buttons.txt:

button1_label
"Hello"
button2_label
"Goodbye"
button3_label
"Come again"

所以我想做的是让 button1 打印“Hello”。.txt 文件的所有行都被推入 myArrayOfLines。提前感谢您的帮助。

编辑 完整解释

对不起,我试图简化我的问题,我想我让它更难理解。我做了一个文本编辑器,而不是运行客户端,没有服务器。我有一组将预定义短语插入 TextArea 的按钮每个按钮都有一个监听器,它执行 myTextArea.insert("sometext"); (但每个按钮的文本不同。用户要求能够创建自己的按钮以插入自己的字符串。我想我会有几个 og 文本输入,用户可以在其中定义标签,以及将插入到按钮单击时的文本区域。我会将标签写入一行,然后将字符串写入下一行。现在我创建了一个具有这种格式的buttons.txt文件,看看它是否可以工作。

最后编辑:工作代码

public function setupBtns(e:Event):void{
            var file:File = File.documentsDirectory.resolvePath("buttons.txt");
            var stream:FileStreamWithLineReader = new FileStreamWithLineReader();
            stream.open(file, FileMode.READ);

            while(stream.bytesAvailable) {
                // this line contains the headers like button1_label etc.
                var label:String;
                // this line contains the string

                if(stream.bytesAvailable) {
                    // this line contains the actual label like "Hello";
                    label = stream.readUTFLine();
                    line = stream.readUTFLine();

                    // strip off the first and last character as they are double quotes
                    line = line.substring(1, line.length-1);

                    var tempBtn:Button = new Button();
                    tempBtn.addEventListener(MouseEvent.CLICK, btnListener);

                    tempBtn.label = label;
                    tempBtn.name = line;
                    btnArray.push(tempBtn);
                    for(var i:Number = 0;i<btnArray.length;i++){
                        group.addElement(btnArray[i]);
                    }
                }
            }
        }           

        protected function btnListener(e:MouseEvent):void{
            mainTextField.insertText(e.target.name);    
            trace(e.target.name);
        }
4

2 回答 2

1

Try this out and let me know how it works out...

EDIT: (try new code below)

        protected function onLoaded(e:Event):void {
            var myArrayOfLines:Array = e.target.data.split(/\n/);
            var tempBtn:Button;

            for(var i:Number = 0;i < myArrayOfLines.length;i=i+1){
                var j:Number = i+1;
                tempBtn = new Button();
                tempBtn.id = "btn" + i;
                tempBtn.addEventListener(MouseEvent.CLICK, function(evt:MouseEvent):void{
                        myTextArea.text += '\n' + myArrayOfLines[j];
                    });
                tempBtn.label = myArrayOfLines[i];
                btnArray.push(tempBtn);
                group.addElement(btnArray[btnArray.length-1]);
            }
        }           
于 2011-07-19T15:56:09.023 回答
0

第一:不要在actionscript中使用匿名函数作为监听器——如果你是你,以后就不能删除它们了。

而是使用这样的类方法:

tempBtn.addEventListener(MouseEvent.CLICK, onMouseClick);

private function onMouseClick(evt:MouseEvent):void
{
  if (evt.currentTarget == button1_label)
  {
     // do sth for btn1
  }
  else if (evt.currentTarget == button2_label)
  {
     // do sth for btn2
  }
  // ...
}

编辑

刚刚看到,您正在使用 ID,然后只需将上面的代码更改为:

if (evt.currentTarget.id == "btn1")
于 2011-07-19T15:53:48.000 回答