是否可以在课程中使用URLLoader?
我试图在课堂上使用它。代码取自:http://www.republicofcode.com/tutorials/flash/as3externaltext/
这是我的课程,我正在尝试使用它,但是我收到了这个错误: C:\ Users \ com \ defaultVars.as,第36行1046:未找到类型或不是编译时常量:事件。**
package com {
import flash.display.Stage;
import flash.*;
public class defaultVars
{
// loader
public var myTextLoader:URLLoader = new URLLoader();
public function defaultVars()
{
myTextLoader.addEventListener(Event.COMPLETE, onLoaded);
myTextLoader.load(new URLRequest("myText.txt"));
}
public function sampleFunction()
{
// trace("not used");
}
/// ERROR LINE right below. But even if I fix this I get more errors.
function onLoaded(e:Event):void {
trace(e.target.data);
}
////////////////////////
}
}
答案 0 :(得分:0)
尝试将其添加到文件的顶部。
import flash.events.*
import flash.net.*;