1

我已经搜索过类似的东西,但我的没有其他问题开始 - 没有使用受保护的函数或流氓命名{}。所以你能帮忙吗 - 怎么了?

全部为第 19 行 ( private function display2)

col:2 错误:语法错误:在左大括号之前需要标识符。

col:2 错误:语法错误:在 leftbrace 之前需要 leftparen。

col:2 错误:语法错误:在左大括号之前需要标识符。

col:2 错误:语法错误:在 leftbrace 之前需要 rightparen。

{



    package 
    {
        import flash.accessibility.AccessibilityImplementation;
        import flash.display.Bitmap;
        import flash.display.MovieClip;
        import flash.text.TextField;
        import flash.text.TextFormat;
        import flash.display.Sprite;



        /**
         * ...
         * @author Michael
         */
        public class Start extends Sprite   {
                [Embed(source="../lib/Start.jpg")]
                private var StartClass:Class

                            private function display2():void
                            {
                addChild(StartClass());
                myTextBox.text = "Jabble. Click to Scroll Down (下にスクロールする]をクリック). Press Enter to  Instructions alternate between English and Japanese (translations). Press H for the help web page or put http://wp.me/P3FUQl-n in your web browser.  Beneath is the Board and to the right is the Box. Click and Drag Tiles to move it and double click it set it on a square space on the Board or Box and click the Box to change its mode. Jabble- 英語と日本語(訳)との間で交互に指示。を押して、ヘルプWebページのHまたはWebブラウザでhttp://wp.me/P3FUQl-nを置く。下には、理事会で、右側のボックスである。クリックして、それを移動するにはタイルをドラッグし、ダブル会またはボックス上の正方形のスペースには、それを設定してクリックし、そのモードを変更するには、ボックスをクリックしてください" ; 

                myTextBox.width = Box.width;  
                myTextBox.height = Box.height; 
                myTextBox.multiline = true; 
                myTextBox.wordWrap = true; 
                myTextBox.background = true; 
                myTextBox.border = true; 

                var format:TextFormat = new TextFormat(); 
                format.font = "Verdana"; 
                format.color = 0xFF0000; 
                format.size = 10; 

                myTextBox.defaultTextFormat = format; 
                addChild(myTextBox); 
                myTextBox.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownScroll); 
                        }       


        }
    }
4

2 回答 2

1

你在那里犯了一些错误。首先,您要添加一个类而不使用它new之前的。它需要addChild(new StartClass())代替addChild(StartClass()).

其次,您还没有声明变量myTextBox。大概是这样的var myTextBox:TextField = new TextField();

于 2013-09-01T12:11:50.173 回答
0

发生这种情况是因为在您打开包裹之前 {

于 2013-09-01T18:56:22.147 回答