`
uoke
  • 浏览: 14949 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论
文章列表

数据绑定

http://book.csdn.net/bookfiles/1013/100101330898.shtml
http://blog.sban.com.cn/2009/02/19/various-of-itemrender-about-datagrid-in-flex.html
http://bbs.actionscript3.cn/thread-16770-1-1.html
Build a flex applications that look good right out of the box with flex 3 or 4 is easy, you can customize the look of your applications with several ways be given by Flex builder, but I think most developers hope the applications built by them will be amazing and unique. So, for getting some inspirat ...
1:介绍 作为一个PHP和HTML开发者,你可能疑问“怎样开始使用FLEX?”ADOBE FLEX是一个非常强大的工具,但是“...强大的功能带来强大的负担.” 这个文章向你展示了如何在FLEX完成PHP开发人员每天做一些的普通的任务。 HTML例子 说明了HTML和MXML代码的不同,每个部分以一个单独的例子结束,你可以独立运行它。 任何使用PHP的地方,这些代码都可以执行。所有的工程文件(点击下载)中代码和例子都是可用的。我将从基本的内容开始,然后过度到高级内容。希望这个教程可以让你了解开始使用FLEX是一个多么容易的事情。 目录: 1:介绍 2:通过GET方法向PHP提交FORM 3:通 ...
<mx:Style>     .errorTip{         color:#FFFFFF;         fontSize:14;         fontWeight:"bold";         shadowColor: #000000;         borderColor: #CE2929;         borderStyle: "errorTipRight";         paddingBottom: 4;         paddingLeft: 4;         paddingRight: 4;       ...
下载解压到你的站点目录下,我这里的路径是http://localhost/amfphp/ 地址栏输入:http://localhost/amfphp/gateway.php,显示如下: amfphp and this gateway are installed correctly. You may now connect to this gateway from Flash. AMF C Extension is loaded and enabled. Note: If you're reading an old tutorial, it will tell you that you sh ...

CSS 背景

    博客分类:
  • CSS
CSS 允许应用纯色作为背景,也允许使用背景图像创建相当复杂的效果。 CSS 在这方面的能力远远在 HTML 之上。 背景色 可以使用 background-color 属性为元素设置背景色。这个属性接受任何合法的颜色值。 这条规则把元素的背景设 ...
如何插入样式表 当读到一个样式表时,浏览器会根据它来格式化 HTML 文档。插入样式表的方法有三种: 外部样式表 当样式需要应用于很多页面时,外部样式表将是理想的选择。在使用外部样式表的情况下,你可以通过改变一 ...
CSS 类选择器 在 CSS 中,类选择器以一个点号显示: .center {text-align: center}在上面的例子中,所有拥有 center 类的 HTML 元素均为居中。 在下面的 HTML 代码中,h1 和 p 元素都有 center 类。这意味着两者都将遵守 ".center" 选择器中的规则。 <h1 class="center"> This heading will be center-aligned </h1> <p class="center"> This par ...
Getting Started With JavaFX Technology Skill Level Beginner Product JavaFX Key Features Introduction to JavaFX Technology Last Updated February 12, 2009 This article provides some brief information about JavaFX technology. It explains what to download and install, and how to get started with the ...
http://www.javafx.com/learn/ http://developers.sun.com.cn/javafx/samples/EffectsPlayground/index.html
定义和用法 className 属性设置或返回元素的 class 属性。 语法 object.className=classname实例 本例展示了两种获得 <body> 元素的 class 属性的方法: <html> <body id="myid" class="mystyle"> <script type="text/javascript"> x=document.getElementsByTagName('body')[0]; document.write("Body ...
定义和用法 getElementById() 方法可返回对拥有指定 ID 的第一个对象的引用。 语法 document.getElementById(id)说明 HTML DOM 定义了多种查找元素的方法,除了 getElementById() 之外,还有 getElementsByName() 和 getElementsByTagName()。 不过,如果您需要查找文档中的一个特定的元素,最有效的方法是 getElementById()。 在操作文档的一个特定的元素时,最好给该元素一个 id 属性,为它指定一个(在文档中)唯一的名称,然后就可以用该 ID 查找想要的元素。 实例 例子 1 ...
定义和用法 close() 方法可关闭一个由 document.open 方法打开的输出流,并显示选定的数据。 语法 document.close()说明 该方法将关闭 open() 方法打开的文档流,并强制地显示出所有缓存的输出内容。如果您使用 write() 方法动态地输出一个文档,必须记住当你这么做的时候要调用 close() 方法,以确保所有文档内容都能显示。 一旦调用了 close(),就不应该再次调用 write(),因为这会隐式地调用 open() 来擦除当前文档并开始一个新的文档。 实例 <html> <head> <script type=&q ...
Global site tag (gtag.js) - Google Analytics