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년 전 조회 2,229
14년 전 조회 3,240
14년 전 조회 3,121
14년 전 조회 2,072
14년 전 조회 2,563
14년 전 조회 5,053
14년 전 조회 1,782
14년 전 조회 3,768
14년 전 조회 2,499
14년 전 조회 2,975
14년 전 조회 2,172
14년 전 조회 1,932
14년 전 조회 1,959
14년 전 조회 2,096
14년 전 조회 2,166
14년 전 조회 3,071
14년 전 조회 4,280
14년 전 조회 3,361
14년 전 조회 2,065
14년 전 조회 2,655
14년 전 조회 2,910
14년 전 조회 1,715
14년 전 조회 2,966
14년 전 조회 4,194
14년 전 조회 2,866
14년 전 조회 3,790
14년 전 조회 4,922
14년 전 조회 5,162
14년 전 조회 3,539
14년 전 조회 1,963
14년 전 조회 2,302
14년 전 조회 5,089
14년 전 조회 3,402
14년 전 조회 2,547
14년 전 조회 4,944
14년 전 조회 3,584
14년 전 조회 1,697
14년 전 조회 3,599
14년 전 조회 1,716
14년 전 조회 1,980
14년 전 조회 2,836
14년 전 조회 2,482
14년 전 조회 2,703
14년 전 조회 2,243
14년 전 조회 3,246
14년 전 조회 1,917
14년 전 조회 1,947
14년 전 조회 1,753
14년 전 조회 2,539
14년 전 조회 2,185
14년 전 조회 1,892
14년 전 조회 6,434
14년 전 조회 3,035
14년 전 조회 2,297
14년 전 조회 1,788
14년 전 조회 1.1만
14년 전 조회 2,700
14년 전 조회 1,707
14년 전 조회 1,749
14년 전 조회 2,579
14년 전 조회 3,138
14년 전 조회 2,667
14년 전 조회 1,889
14년 전 조회 3,200
14년 전 조회 3,138
14년 전 조회 4,137
14년 전 조회 2,250
14년 전 조회 2,402
14년 전 조회 1,940
14년 전 조회 1,997
14년 전 조회 3,243
14년 전 조회 2,027
14년 전 조회 3,542
14년 전 조회 1,760
14년 전 조회 4,626
14년 전 조회 1,795
14년 전 조회 3,205
14년 전 조회 4,592
14년 전 조회 1,838
14년 전 조회 2,035
14년 전 조회 2,395
14년 전 조회 1,922
14년 전 조회 2,480
14년 전 조회 2,341
14년 전 조회 2,482
14년 전 조회 2,220
14년 전 조회 1,813
14년 전 조회 2,272
14년 전 조회 2,272
14년 전 조회 2,159
14년 전 조회 1,731
14년 전 조회 1,665
14년 전 조회 2,086
14년 전 조회 1,605
14년 전 조회 4,157
14년 전 조회 1,626
14년 전 조회 1,997
14년 전 조회 1,661
14년 전 조회 1,686
14년 전 조회 2,915