v

flash에서 마우스 오른쪽 버튼 사용하기

flash 에서 오른쪽 마우스를 사용 하기 위해서
ASnative 를 이용해서 dispatch 한 이벤트를 실행합니다.
버튼, 무비클립 클릭 용으로 만들었습니다.

swf 파일을 html에서 embead 할 때 menu=false로 지정 합니다.
 그래야 flash 상에서 메뉴 버튼이 나타나지 않습니다.

flash의 1번째 프레임에 다음과 같이 선언 합니다.
소스는 actionscript 를 조금만 할 줄 알면 누구나 이해 할 수 있음으로,, 설명은 생략 ...


var EventStack:Array  =new  Array();
this.onEnterFrame = function() {
 //dispitchEvent by MouseRightBtnClick
 
 if (ASnative(800, 2)(2)) {
  //객체 찾기
  var temp:Array=find_object(this._currentframe);
  for(i:Number=0; i<temp.length; i++){
   if(is_mouseOver(this[temp[i].eventTarget])==true){
    //method call;
    var method:String = temp[i].tirggerMethod;
    this[method]();
    removeEventStack(temp[i].frameNo,temp[i].eventTarget,temp[i].tirggerMethod);
   }//end if
  }//end for
 }//end if
}//end EnterFrame

//등록
function regist(frameNo:String,eventTarget:String,tirggerMethod:String):Void{
 var defaultObj:Object = new Object();
 defaultObj.frameNo=frameNo;
 defaultObj.eventTarget=eventTarget;
 defaultObj.tirggerMethod =tirggerMethod;
 EventStack.push(defaultObj);
}

// is mouseOver
function is_mouseOver(o:Object){
 var is:Boolean=false;
 if(o.hitTest(_root._xmouse,_root._ymouse, false)){
  is=true;
 }
 return is;
}
function find_object(frameNo:String):Array{
 var objArray:Array = new Array();
 for(i:Number=0; i<EventStack.length; i++){
  if(EventStack[i].frameNo==frameNo){
   objArray.push(EventStack[i]);
  }
 }
 return objArray;
}
function removeEventStack(frameNo:String,eventTarget:String,tirggerMethod:String){
 for(i:Number =0; i<EventStack.length; i++){
  if(EventStack[i].frameNo==frameNo){
   if(EventStack[i].eventTarget==eventTarget){
    if(EventStack[i].tirggerMethod==tirggerMethod){
     array_slice(EventStack,i);
     break;
    }
   }
  }
 }
}
function array_slice(target_array:Array, target_num:Number){
 for(var i=0; i<target_array.length; i++){
   if(i==target_num){
    target_array.splice(i,1);
   }
 }
}


마우스 오른쪽 버튼을 클릭 할 위치에
 
stop();
//_currentframe 현제 프레임 번호 , bg1 <-- 이벤트가 발생할 객체(버튼, 무비클립), fun1 <-- 이벤트가 발생 할 후 호출될 함수 명     함수 명은 수정 될 수 있으나 해당 함수를  반드시 구현 해줘야 한다.

regist(_currentframe,"bg1","fun1");

//callback function
function fun1(){
   //마우스 오른쪽 버튼 클릭시 실행될 내용
 trace("mouseclick");

}
|

댓글 3개

오오 대박대박
그러나 이방법도 완벽한 해결 방법은 아님을 참고 해주세요;
감사합니다~~
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,872
14년 전 조회 2,843
14년 전 조회 2,698
14년 전 조회 1,683
14년 전 조회 2,157
14년 전 조회 4,655
14년 전 조회 1,409
14년 전 조회 3,366
14년 전 조회 2,130
14년 전 조회 2,585
14년 전 조회 1,795
14년 전 조회 1,553
14년 전 조회 1,562
14년 전 조회 1,687
14년 전 조회 1,770
14년 전 조회 2,656
14년 전 조회 3,903
14년 전 조회 2,973
14년 전 조회 1,687
14년 전 조회 2,269
14년 전 조회 2,551
14년 전 조회 1,329
14년 전 조회 2,599
14년 전 조회 3,799
14년 전 조회 2,470
14년 전 조회 3,415
14년 전 조회 4,670
14년 전 조회 4,754
14년 전 조회 3,159
14년 전 조회 1,597
14년 전 조회 1,906
14년 전 조회 4,718
14년 전 조회 3,028
14년 전 조회 2,200
14년 전 조회 4,569
14년 전 조회 3,217
14년 전 조회 1,309
14년 전 조회 3,209
14년 전 조회 1,339
14년 전 조회 1,575
14년 전 조회 2,456
14년 전 조회 2,075
14년 전 조회 2,324
14년 전 조회 1,858
14년 전 조회 2,880
14년 전 조회 1,540
14년 전 조회 1,546
14년 전 조회 1,384
14년 전 조회 2,203
14년 전 조회 1,802
14년 전 조회 1,524
14년 전 조회 6,083
14년 전 조회 2,659
14년 전 조회 1,919
14년 전 조회 1,405
14년 전 조회 1만
14년 전 조회 2,331
14년 전 조회 1,336
14년 전 조회 1,342
14년 전 조회 2,213
14년 전 조회 2,764
14년 전 조회 2,283
14년 전 조회 1,519
14년 전 조회 2,838
14년 전 조회 2,795
14년 전 조회 3,773
14년 전 조회 1,921
14년 전 조회 2,022
14년 전 조회 1,561
14년 전 조회 1,663
14년 전 조회 2,900
14년 전 조회 1,675
14년 전 조회 3,181
14년 전 조회 1,373
14년 전 조회 4,260
14년 전 조회 1,454
14년 전 조회 2,821
14년 전 조회 4,242
14년 전 조회 1,491
14년 전 조회 1,690
14년 전 조회 2,063
14년 전 조회 1,550
14년 전 조회 2,110
14년 전 조회 1,973
14년 전 조회 2,087
14년 전 조회 1,852
14년 전 조회 1,455
14년 전 조회 1,937
14년 전 조회 1,938
14년 전 조회 1,807
14년 전 조회 1,382
14년 전 조회 1,303
14년 전 조회 1,713
14년 전 조회 1,206
14년 전 조회 3,807
14년 전 조회 1,244
14년 전 조회 1,639
14년 전 조회 1,276
14년 전 조회 1,326
14년 전 조회 2,571