플래시 쿠키 의 제작 과 사용 예 상세 설명 2

7468 단어 cookie
이 편 은 주로 플래시 쿠키 의 제작 과 사용 예 시 를 상세 하 게 설명 하 는 토대 에서 외부 actionscript 3 의 유형,즉 as 파일 을 어떻게 사용 하 는 지 소개 합 니 다.여 기 는 주로 코드 를 보고 구체 적 인 것 은 소개 하지 않 습 니 다.모 르 는 것 은 플래시 쿠키 의 제작 과 사용 예 시 를 자세히 설명 할 수 있 습 니 다.
http://ylq365.iteye.com/blog/1873382
먼저 외부 클래스 를 정의 합 니 다.여기 있 는 클래스 는 인터넷 에서 찾 은 쿠키 를 조작 하 는 클래스 입 니 다.이 클래스 를 예 로 들 면
이 유형의 코드 는 다음 과 같 습 니 다.클래스 이름 은 Cookie.as 입 니 다.


package {   
       
    import flash.net.SharedObject;     
   
    public class Cookie {   
           
        private var _time:uint;   
        private var _name:String;   
        private var _so:SharedObject;   
           
        public function Cookie(name:String = "testFlashCookie", timeOut:uint=3600) {   
             _name = name;   
             _time = timeOut;   
             _so = SharedObject.getLocal(name, "/");   
         }   
           
        //      ;   
        public function clearTimeOut():void {   
             var obj:* = _so.data.cookie;   
            if(obj == undefined){   
                return;   
             }   
            for(var key in obj){   
                if(obj[key] == undefined || obj[key].time == undefined || isTimeOut(obj[key].time)){   
                     delete obj[key];   
                 }   
             }   
             _so.data.cookie = obj;   
             _so.flush();   
         }   
           
        public function isTimeOut(time:uint):Boolean {   
             var today:Date = new Date();           
            return time + _time * 1000 < today.getTime();   
         }   
           
        //     ;   
        public function getTimeOut():uint {   
            return _time;   
         }   
           
        //    ;   
        public function getName():String {   
            return _name;   
         }   
           
        //  Cookie   ;   
        public function clear():void {   
             _so.clear();   
         }   
           
        //  Cookie    
        public function put(key:String, value:*):void {   
             var today:Date = new Date();   
             key = "key_"+key;   
             value.time = today.getTime();   
            if(_so.data.cookie == undefined){   
                 var obj:Object = {};   
                 obj[key] = value;   
                 _so.data.cookie = obj;   
             }else{   
                 _so.data.cookie[key] = value;   
             }   
             _so.flush();   
         }   
           
           
        //  Cookie ;   
        public function remove(key:String):void {   
            if (contains(key)) {   
                 delete _so.data.cookie["key_" + key];   
                 _so.flush();   
             }   
         }   
           
        //  Cookie ;   
        public function get(key:String):Object{        
            return contains(key)?_so.data.cookie["key_"+key]:null;   
         }   
           
        //Cookie     ;   
        public function contains(key:String):Boolean{   
             key = "key_" + key;    
            return _so.data.cookie != undefined && _so.data.cookie[key] != undefined;   
         }   
     }   
}   

그리고 플래시 에서 호출 합 니 다.플래시 에서 호출 된 코드 는 다음 과 같 습 니 다.

var myCookie:Cookie= new Cookie();
//  ExternalInterface 
import flash.external.ExternalInterface;
flash.system.Security.allowDomain("http://localhost");
flash.system.Security.allowDomain("http://127.0.0.1");
//          
flash.system.Security.allowDomain("*");

function setFC(obj:Object){
	myCookie.put("userInfo",obj);
}
function getFC():String{
	return myCookie.get("userInfo").userName;
	return myCookie.getTimeOut();
}
//  js)  flash  getFC(),setFC(),setFCUserObj
ExternalInterface.addCallback("getFC",getFC); 
ExternalInterface.addCallback("setFC",setFC); 

그리고 페이지 의 코드:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN" xml:lang="zh-CN">
	<head>
		<title>testFC</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<style type="text/css" media="screen">
		html, body { height:100%; background-color: #ffffff;}
		body { margin:0; padding:0; overflow:hidden; }
		#flashContent { width:100%; height:100%; }
		</style>
		<script type="text/javascript">
		
			function setFC(){
			var userName = document.getElementById("userName").value;
			var obj = new Object();
				obj.userName=userName;
				obj.sex="m";
				thisMovie().setFC(obj);
			}
		
			function getFC(){
				alert(thisMovie().getFC());
			}
			//  js flash     
			function thisMovie() {
				if (navigator.appName.indexOf("Microsoft") != -1) {
					return window["testFC"];
				}else{
					return document["testFC"];
				}
			} 
			
		</script>
	</head>
	
	<body>
	<input type="text"  name="userName" id="userName"  value="" />
	<input type="button" onclick="setFC()" value="setFC" />
	<input type="button" onclick="getFC()" value="getFC" />
		
		<div id="flashContent">
			 <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1" height="1" id="testFC" title="testFC" align="middle">
			 <param name="allowScriptAccess" value="always" />
			 <param name="movie" value="testFC.swf">
			 <param name="quality" value="high">
			 <param name="wmode" value="transparent" />
			 <embed src="testFC.swf" name="testFC" quality="high" allowScriptAccess="always"  swLiveConnect="true" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"  width="1" height="1"></embed>
			</object>
	</div>
	</body>
</html>



위의 코드 를 실행 하면 우리 가 원 하 는 결 과 를 볼 수 있다.이런 방법 으로 우 리 는 단독으로 몇 가지 종 류 를 쓴 다음 에 플래시 에서 호출 할 수 있다.코드 가 더욱 구조 화 되 고 더욱 높 은 중용 성 등 이다.

좋은 웹페이지 즐겨찾기