Debian 5.0 'Lenny' : Flash Player 10安装升级
	
    
    
	Architecture: i386, amd64 
Configure your system to use lenny-backports by adding this line to your sources.list
deb http://www.backports.org/debian lenny-backports main contrib non-free
How to install flashplugin-nonfree :
apt-get update
apt-get install flashplugin-nonfree
How to update flashplugin-nonfree :
apt-get update
apt-get upgrade
How to update the Adobe Flash Player :
/usr/sbin/update-flashplugin-nonfree --install
官网转来的!
    
     
	
	
    
    
	相关文档:
        
    
      这本书主要是讲性能优化的!总共只有 85页,蛮少的@^_^ !  废话不多说:
目录
Introduction 
Conserving memory 
Minimizing CPU usage 
ActionScript 3.0 performance 
Rendering performance 
Optimizing network interaction 
Working with media 
SQL Database performance 
Benchmarking and d ......
	
    
        
    
    1、用panel,label,button,textinput组建布局,如下图:
 
2、设用户名、密码、验证码所对应的textinput的id分别为userName、pasWord、inVal;设用于显示验证码的label组建的id为:val.
     布局代码如下:
 <s:Panel x="126" y="98" width="250" height="200" id="login" title="用户 ......
	
    
        
    
    数据库是 纯真数据库 格式为 UTF-8  txt格式
php文件是UTF-8编码  
demo :      http://dreamnight.gicp.net/zendphp/IP/connect.swf
flash端:
import flash.net.URLLoader;
import flash.net.URLRequest;
import flash.events.Event;
import flash.events.ProgressEvent;
//i ......
	
    
        
    
    演示地址:  
forked from: SimpleFish - wonderfl build flash online
 今天我们要创建一个小鱼的绘制。这次我们会使用SimpleFish.as 创建绘制小鱼类 。同时我们会使用绘图APi 当中的curveTo 的一个方法。这个方法用法如下,
    this.graphics.moveTo(开始起点X,开始起点Y);
 &nb ......
	
    
        
    
    A星算法,flash 演示版
package
{
	import flash.display.Sprite;
	import flash.events.MouseEvent;
	
	[SWF(width="550",height="550",backgroundColor="#999999")]
	public class astart extends Sprite
	{
		// 常数定义
		private static const size:int = 50;
		
		private var points:Array = new Array ......