如何设置可在HTTPService发送时启动的进度条,并在HTTPService结束时停止?
我按照here给出了代码,但遇到了以下错误:
未找到类型或未找到类型 编译时常量:ProgressWin。
不知道ProgressWin.mxml是组件还是模块或者是什么。我刚刚创建了一个新的ProgressWin.mxml文件并粘贴了您发布的代码,但是之后出现错误
<mx:TitleWindow xmlns:mx=" http://www.adobe.com/2006/mxml" width="250" height="150" title="Progressive Window">
错误:
无法解决 组件实现。
答案 0 :(得分:2)
示例代码中的每个网址前面都有一个额外的空格。例如:
<mx:TitleWindow xmlns:mx=" http://www.adobe.com/2006/mxml" width="250" height="150" title="Progressive Window">
应该是
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" width="250" height="150" title="Progressive Window">