需要你的帮助。我是第一次尝试。
我使用了以下代码。但我在控制台中得到了这个:
开始加载文件 SecurityError: Error #2000: No active security context。
我的图片网址与我的脚本文件位于同一文件夹中。
var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, fileLoaded);
loader.load(new URLRequest("C:\Documents and Settings\Owner\Desktop\23Aug\demo1\mic.jpg"), context);
var context:LoaderContext = new LoaderContext();
context.applicationDomain = ApplicationDomain.currentDomain;
trace("started loading file");
addChild(loader);
function fileLoaded(event:Event):void
{
trace("file loaded");
}