- 浏览: 1586574 次
- 性别:
- 来自: 北京
-
最新评论
-
qq_24800465:
请问这里的库从哪下载啊
ffmpeg所有的编码器(encoders) -
neusoft_jerry:
貌似这里没用到StreamingAMFChannel哦,只是用 ...
Flex BlazeDS 推送技术 -
anyone:
感谢你的博文,看了受益匪浅
记住这个IntelliJ IDEA的编译设置 -
keren:
现在还有什么应用需要用flex来开发的?
flex tree的展开,关闭,添加、删除子节点 -
neusoft_jerry:
简洁明快,好贴好贴!楼主V5!
flex tree的展开,关闭,添加、删除子节点
文章列表
转:
Creating a self-closing Alert control in Flex
http://blog.flexexamples.com/2009/04/08/creating-a-self-closing-alert-control-in-flex/
<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2009/04/08/creating-a-self-closing-alert-control-in-flex/ - ...
- 2009-04-24 12:40
- 浏览 4913
- 评论(0)
一,首先,給flex builder安装ant插件,参照:
http://blog.jodybrewster.net/2008/04/09/installing-ant-in-flex-builder-3/
具体步骤如下:
1. Launch Flex Builder
2. Go to Help > Software Updates > Find and Install
3. Search for new features to install, click next
4. Select “Eclipse.org update site”, click ...
下载:
http://code.google.com/p/fxspy/downloads/list
用法:
http://code.google.com/p/fxspy/wiki/InstallationInstructions
- 2009-04-23 09:24
- 浏览 1230
- 评论(0)
Flex开源项目(转载http://flfxair.com/?p=167)
1. Flexbox
http://flexbox.mrinalwadhwa.com/
这是一位来自印度的flex开发者在07年2月份建立的flex组件库,里面也有不少好东西。
2. Flexlib
http://code.google.com/p/flexlib/
由Dougmccune等人建立的flex组件库,其中有不少实用的组件。
3.SpringGraph Flex Component
http://mark-shepherd.com/blog/springgraph-flex-component ...
- 2009-04-23 08:06
- 浏览 4962
- 评论(0)
[url]http://hessian.caucho.com/ria/ [/url]
package c2s
{
import flash.events.IOErrorEvent;
import hessian.client.HessianAsyncToken;
import hessian.client.HessianProxy;
import hessian.events.HessianErrorEvent;
import hessian.events.HessianRes ...
- 2009-04-23 07:55
- 浏览 2016
- 评论(0)
转: http://xinsync.xju.edu.cn/index.php/archives/4208
- 2009-04-23 05:59
- 浏览 1882
- 评论(0)
http://sourceforge.net/projects/flexformatter/
- 2009-04-22 23:42
- 浏览 1073
- 评论(0)
http://www.quietlyscheming.com/blog/components/flexbook/
有在线demo,看了很震撼。flex强大啊!
- 2009-04-22 23:14
- 浏览 1816
- 评论(0)
转:http://blog.minidx.com/2008/03/19/609.html
- 2009-04-22 23:08
- 浏览 1707
- 评论(0)
转:http://xinsync.xju.edu.cn/index.php/archives/1930
What is mx_internal?
http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&productId=2&postId=12212
什么是mx_internal?
引用:http://life.neophi.com/danielr/2007/05/mx_internal.html的话:
有时候你想改变一个Flex组件的行为, 但是它藏在私有方法或者私有变量后面, 所以 ...
- 2009-04-22 23:04
- 浏览 5829
- 评论(0)
转:http://gain-loss.org/?p=71
- 2009-04-22 22:52
- 浏览 1244
- 评论(0)
package com.adobe.air.logging {
import mx.logging.AbstractTarget;
import flash.filesystem.File;
import flash.filesystem.FileStream;
import flash.filesystem.FileMode;
import mx.logging.LogEvent;
import flash.system.System;
import flash.system.Capabilities;
import mx.logging.targets.LineF ...
- 2009-04-22 22:30
- 浏览 1999
- 评论(0)
在app里加入
private function preinit():void
{
UIComponent.mx_internal::dispatchEventHook=myHook;
}
private function myHook(e:Event, uic:UIComponent):void
{
if (e.type == "preinitialize")
...
- 2009-04-22 22:28
- 浏览 1537
- 评论(0)
1,我的机器是vista,运行flex builder 调试老是不行,断点自动消失,看了好多网上的帖子,针对flex builder plugin版本,在eclipse.ini 里面加入:
-Djava.net.preferIPv4Stack=true,一看已经有了,针对Flex builder在 FlexBuilder.ini里面加入 -Djava.net.preferIPv4Stack=true。
2,加了还是不行,最后把flex builder 或eclipse 在运行前 把兼容模式设为xp2即可。
具体为:右键 XXX.exe,属性--兼容性 在里面勾上 xp2兼容模式运行即可。
参 ...
- 2009-04-22 19:22
- 浏览 1827
- 评论(0)
Flex 自定义加载进度条
转:http://a168.blogbus.com/logs/28718649.html
使用方法:
设置Application标签的preloader为 MyComponent.MyDownloadProgressBar
<mx:Application preloader="MyComponent.MyDownloadProgressBar" >
下面是MyDownloadProgressBar.as的代码:
package MyComponent
{
import flash.display.*;
import flash.e ...
- 2009-04-22 08:00
- 浏览 10242
- 评论(2)