- 浏览: 517703 次
- 性别:
- 来自: 北京
最新评论
-
DawnBells:
...
java.util.concurrent 之六:使用Future类和Callable类 -
kanglecjr:
http://tieba.baidu.com/f?kz=101 ...
泰语字母好看的手写体 -
zxjlwt:
学习了。http://surenpi.com
java.util.concurrent 之六:使用Future类和Callable类 -
spring_springdata:
java jsoup开源框架demo使用实例教程源代码下载:h ...
JSOUP获取网页数据返回403错误(403 error loading URL,connection类) -
narochids:
MARK!
JavaScript+Ajax实例大全(1521例以上),可以随编辑随执行
文章列表
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style source="style.css"/>
<mx:Panel title="按钮控件 不同状态 示例"
height="75%" width="75%" layout="hori ...
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style source="style.css"/>
<mx:Panel title="按钮 控件 示例" height="75%" width="75%" layout="horizontal& ...
- 2009-06-17 08:59
- 浏览 913
- 评论(0)
画布(Canvas)容器 对 子类 进行 绝对值 定位,应用(Application)容器、面板(Panel)容器 可选择 绝对值 定位 或 相对值 定位。
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Panel title="控件 定位 示例(Positioning Controls)" width="50%&q ...
- 2009-06-17 08:47
- 浏览 1048
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Panel title="相对值 设置 大小 示例" width="50%" height="50%" horizontalAlign="center" verticalAlign="middle"&g ...
- 2009-06-17 08:31
- 浏览 1080
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Panel title="绝对值 设置 大小 示例" width="50%" height="50%" horizontalAlign="center" verticalAlign="middle"&g ...
- 2009-06-17 08:08
- 浏览 1344
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Panel x="118.5" y="45" width="250" height="200" layout="absolute" title=& ...
- 2009-06-17 08:00
- 浏览 1111
- 评论(0)
在定义 绝对值 定位时, 需要定义 子类 控件 的 横坐标x、纵坐标y 的 像素值。
Flex 默认 子类 位置是 (0,0)。
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="280" height="240">
<!-- 定义 画布 容器 -->
<mx:Canvas bo ...
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="280" height="240">
<!-- 定义 盒子容器 -->
<mx:Box direction="vertical" width="100%" height="100% ...
- 2009-06-17 07:37
- 浏览 1036
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="280" height="240">
<!-- 定义 面板容器为 约束布局 -->
<mx:Panel title="约束 控件大小 示例" layout="absolute" width=& ...
- 2009-06-17 07:00
- 浏览 1040
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="500" height="400" >
<!-- 定义 面板容器 宽度为 应用容器 的 50%,高度为 应用容器的 50% -->
<mx:Panel title="相对值 设置 控件大小 示例" widt ...
- 2009-06-17 06:46
- 浏览 1024
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<!-- 定义面板容器 宽度为 200 像素,高度为 200 像素 -->
<mx:Panel title="绝对值 设置 控件大小 示例" width="200" height="200">
&l ...
- 2009-06-17 06:38
- 浏览 1077
- 评论(0)
每个组件 都有 默认的 大小值。
<?xml version="1.0" encoding="utf-8"?>
<!-- 所有组件使用默认值 -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<!-- 使用容器大小默认值 -->
<mx:Panel title="默认的 面板容器大小 和 按钮控件大小">
<!-- 使用 控件 ...
- 2009-06-17 06:31
- 浏览 980
- 评论(0)
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Label fontWeight="" x="139.5" y="55" text="Hello, World!" width="125" he ...
- 2009-06-17 06:22
- 浏览 920
- 评论(0)
源自:http://bbs.51js.com/viewthread.php?tid=1402
比如怎么返回值?
举个例子
更改字体的颜色
<OBJECT id=dlgHelper CLASSID="clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b" width="0px" height="0px"></OBJECT>
<input type='button' value='颜色对话框' onclick='dlgHelper.choosecolorDlg()'> ...
- 2009-05-26 11:41
- 浏览 1669
- 评论(0)