0

我正在尝试从http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf61c8a-7ff4.html运行程序

我正在使用 Adbobe builder 4.6 版我遇到这个问题 WAVwriter class not found when I import com.adobe.audio.format.WAVWriter;

还有 var outputFile:File = File.desktopDirectory.resolvePath("recording.wav"); 找不到文件类型。。

如何解决此错误

4

2 回答 2

1

Exactly as Adnan Doric said. And if you want to output your file using Flash Player runtime (instead of AIR), you should use flash.net.FileReference class. Calling its dowload() method will pop up an external dialog which can be used to save your file.

于 2012-04-17T08:55:56.633 回答
0

File是一个 AIR 类,请确保您的项目适用于桌面或移动 (AIR)。如果没有,您可以通过转到File/New/Flex Project...并选中Desktop复选框来创建新的桌面项目(对于移动设备,请选择Flex Mobile Project)。

关于WAVWriter,请确保您链接了相关来源。

于 2012-04-17T08:37:34.137 回答