- 浏览: 23392 次
最新评论
文章列表
Flex创建文本并写入信息的例子如下:
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
layout="horizontal" fontSize="12"
creationComplete="getStudentInfo('helloworld')">
...
I have an odd error creeping up on me with the 2.0 final release. I have a component library that I use with my projects that's been updated with the 2.0 API. When I add this library project via FlashBuilder, I get an error in the SkinnableComponent.as line 632 in my main Application. I tried adding ...
Flex利用as3xls导入excel数据表
- 博客分类:
- Flex
看了sungang_1120的http://sungang-1120.iteye.com/blog/1944358帖子,做了一下改进,步骤如下:
1.生成excel文件,保存为97-2003版xls文件,内容如下图所示,这样能保证导入不出错,并解决了中文在95版xls中的中文乱码问题:
2. 找到as3xls库,请下载附件改进版的as3xlsUTF8.swc库,google上提供的库在 http://code.google.com/p/as3xls/ down的 as3xls.swc打开97-2003的xls会出错,出现EOF错误,情况如下所示:
3.在flex建立工程,敲入如下代 ...