是否可以在类中使用URLLoader?
我正试着在课堂上使用它。代码取自:http://www.republicofcode.com/tutorials/flash/as3externaltext/
这是我的类,我正试图在其中使用它,但我遇到了这个错误:C: \Users\com\defaultVars.as,第36 1046行:未找到类型或类型不是编译时常数:Event.**
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);
}
////////////////////////
}
}
尝试将其添加到文件的顶部。
import flash.events.*
import flash.net.*;