Flex 全屏显示方法
http://blog.sina.com.cn/s/blog_5fc933730100iigh.html 参考
1,修改html-template下的index.template.html文件…增加四行
1<!-- saved from url=(0014)about:internet -->
2<html lang="en">
3
4<!--
5Smart developers always View Source.
6
7This application was built using Adobe Flex, an open source framework
8for building rich Internet applications that get delivered via the
9Flash Player or to desktops via Adobe AIR.
10
11Learn more about Flex at http://flex.org
12// -->
13
14<head>
15<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
16
17<!-- BEGIN Browser History required section -->
18<link rel="stylesheet" type="text/css" href="history/history.css" mce_href="history/history.css" />
19<!-- END Browser History required section -->
20
21<title>${title}</title>
22<mce:script src="AC_OETags.js" mce_src="AC_OETags.js" language="javascript"></mce:script>
23
24<!-- BEGIN Browser History required section -->
25<mce:scrip
相关文档:
#####################
# B/S & C/S
#####################
B/S(Browser/Server,浏览器-服务器)结构,客户端只需浏览器即可,跨平台性较好;简化了客户端的工作,相应地对服务器性能要求较高;与此同
时,因为它(尽管有AJAX)无法从根本上改变“网络应用程序的表示层建立于HTML页面&rdqu ......
刚学完JSP,想为Flex配置Tomcat服务器,并不像MyEclipse那么简单。看了很多教程还是觉得挺麻烦的。结合几个教程,成功在http://127.0.0.1:8080/flexserver1/ 中显示出结果。所以把自己的过程叙述一下:
前提: 已安装Flexbuilder3,tomca6.0
  ......
原帖:http://hi.baidu.com/flex2/blog/item/3501c1622af2b1dde6113aef.html
现在不少人开始关注并学习Flex了(至少比以前多了),但是现在关于Flex的资料并不多,国内的资料就更少了,而且Flex的论坛人气都差的很,一眼望去全都是提问帖子,回帖超过5个的寥寥无几,惨不忍睹啊。我翻译一些东西也是为了增加中文学习资料, ......
1. release时去掉所有trace信息和logger信息,否则影响性能
2. 如果报无法访问本地文件或swf 在compile里面写 -use-network=false
3. 实现component真正隐藏除了设置visible=false外还需要设includeInLayout = false
4. 设手型有时出来设buttonMode="true" useHandCursor="true" 还要设mouseChildren="false"
5. fo ......
一:直接设置
二:画面上设置:
如:
<mx:Style>
TextArea{
font-size:36px
font-weight: bold
}
</mx:Style>
三:使用外置文件
<mx:Style source="style.csss"/> ......