- 浏览: 20149 次
- 性别:
- 来自: 北京
最新评论
文章列表
UrlRequest请求时会缓存会话,也就是说当URL路径不改变,但指定的文件已经进行内容修改,客户端请求的结果还是最先访问产生的会话缓存,如何解决这个问题呢?
可以想到的是每次URL路径发生改变,Get方式时后面添加参数,Post方式提交不断变换的参数进而产生URL每次不同的效果,其实两种方式就是改变参数的不同。
Get:http://****/file/test.txt?random=唯一值
Post:
var variables:URLVariables = new URLVariables();
va ...
RIA爱好者 http://www.riafan.com ComboBox 嵌入复选框 http://flex.desizen.com/multiple-selection-combobox/#more-259 Flex chart 缩放 http://www.riafan.com/article/flex/zoom-chart.html 彻底隐藏Flex Chart中的Series http://www.riafan.com/article/flex/completely-hide-series-in-flex-chart.html Flex图表缩放移动 http://www.iwoban ...
首先我们来看一下它定制的FORMITEM,单单看源代码,这个号称是FORMITEM的东西其实并没有从FORMITEM扩展,而是从HBOX扩展的,因此个人感觉是要装多少东西就装多少东西,看看作者在这故弄玄虚的背后到底要给我们讲解什么东西
...
http://www.adobe.com/cn/devnet/flex/articles/flex3and4_differences.html 连接地址
1. Flex多状态事件
private function state1Handler(event:MouseEvent):void
{
this.currentState = "s2";
Alert.show("1","标题");
}
private function state2Handler(event:MouseEvent):void
{
this.currentState = "s1";
Alert.show("2","标题& ...
package com
{
import flash.events.Event;
import flash.text.TextLineMetrics;
import mx.controls.Button;
import mx.core.UITextField;
import mx.core.mx_internal;
use namespace mx_internal;
public class HtmlButton extends Button
{
/**
* @private
* Storage for the htmlTe ...
package com
{
import flash.events.Event;
import flash.events.FocusEvent;
import flash.text.TextLineMetrics;
import mx.containers.HBox;
import mx.controls.NumericStepper;
import mx.controls.Text;
import mx.controls.TextInput;
import mx.core.UITextField; ...
探究Flex声明周期 (转载 IBM)
- 博客分类:
- Flex
http://www.ibm.com/developerworks/cn/web/1011_simq_flexlifecycle/?ca=drs-tp4608#ibm-pcon
Flex 组件 生命周期
- 博客分类:
- Flex
1、生命周期简述
(1) Construction
调用组件构造函数。(无参Construction)
(2) Get Set
设置组件属性,常在set方法内监控一个布尔变量实现失效机制
(3) 调用addChild方法将组件添加到父容器中。Flex将自动调
用creationChildren(),invaliteProperties(),invalidateSize(),invalidateDisplayList()。只有将组件添加到父容器中,Flex才能确定它的size,设置它所继承style属性。
(4) 组件的
1.复制内容到系统剪贴板System.setClipboard(strContent);2.复制一个ArrayCollection //dummy solution( well, it works ) var bar:ArrayCollection = new ArrayCollection(); for each ( var i:Object in ac ){ bar.addItem( i ); } // fantastic ! // var bar:ListCollectionView = new ListCollectionView( ListCo ...
Failed to connect; session timed out.Ensure that:1. You compiled your Flash application with debugging on.2. You are running the debugger version of Flash Player.解决办法:来自网络犯了一个极低的错误,这个原因是自己造成的,是自己把改为本地自己即可,查了些 ...