获取此错误:
ArgumentError: Error #2004: One of the parameters is invalid.
at Error$/throwError()
at flash.filesystem::File/set nativePath()
at flash.filesystem::File()
at TestingRandomSound_fla::MainTimeline/GetContents()[TestingRandomSound_fla.MainTimeline::frame1:22]
at TestingRandomSound_fla::MainTimeline/frame1()[TestingRandomSound_fla.MainTimeline::frame1:47]
at runtime::ContentPlayer/loadInitialContent()
at runtime::ContentPlayer/playRawContent()
at runtime::ContentPlayer/playContent()
at runtime::AppRunner/run()
at AppEntryCommon/run()
at global/runtime::AndroidMobileDeviceAppEntry()从这个代码中:
import flash.desktop.NativeApplication;
import flash.events.Event;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.filesystem.File;
import flash.ui.Multitouch;
import flash.ui.MultitouchInputMode;
var myDocuments:File = new File(File.applicationDirectory.nativePath+"\\sample");它工作在我的空气桌面,但不适用于Android设备。我包括了文件夹样本,但它仍然不起作用。有什么想法吗?
发布于 2013-06-18 15:27:00
这个很管用。但是很明显,应用程序目录中的文件是只读的。
var prefsFile:File = File.applicationDirectory;
prefsFile = prefsFile.resolvePath("assets/xml/preferences.xml"); 我创建了一个xml首选项文件。但如果我想在上面写我必须把它拷贝到文档目录中..。
https://stackoverflow.com/questions/11942327
复制相似问题