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개

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

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
14년 전 조회 1,675
14년 전 조회 2,659
14년 전 조회 2,522
14년 전 조회 1,484
14년 전 조회 1,964
14년 전 조회 4,477
14년 전 조회 1,204
14년 전 조회 3,184
14년 전 조회 1,999
14년 전 조회 2,402
14년 전 조회 1,596
14년 전 조회 1,377
14년 전 조회 1,386
14년 전 조회 1,503
14년 전 조회 1,578
14년 전 조회 2,487
14년 전 조회 3,720
14년 전 조회 2,792
14년 전 조회 1,497
14년 전 조회 2,098
14년 전 조회 2,371
14년 전 조회 1,140
14년 전 조회 2,418
14년 전 조회 3,618
14년 전 조회 2,299
14년 전 조회 3,225
14년 전 조회 4,530
14년 전 조회 4,557
14년 전 조회 2,972
14년 전 조회 1,479
14년 전 조회 1,698
14년 전 조회 4,532
14년 전 조회 2,854
14년 전 조회 2,011
14년 전 조회 4,389
14년 전 조회 3,035
14년 전 조회 1,114
14년 전 조회 3,016
14년 전 조회 1,171
14년 전 조회 1,393
14년 전 조회 2,273
14년 전 조회 1,881
14년 전 조회 2,145
14년 전 조회 1,670
14년 전 조회 2,707
14년 전 조회 1,327
14년 전 조회 1,341
14년 전 조회 1,197
14년 전 조회 2,003
14년 전 조회 1,634
14년 전 조회 1,337
14년 전 조회 5,950
14년 전 조회 2,479
14년 전 조회 1,784
14년 전 조회 1,216
14년 전 조회 9,971
14년 전 조회 2,144
14년 전 조회 1,128
14년 전 조회 1,139
14년 전 조회 2,085
14년 전 조회 2,558
14년 전 조회 2,098
14년 전 조회 1,340
14년 전 조회 2,636
14년 전 조회 2,617
14년 전 조회 3,633
14년 전 조회 1,713
14년 전 조회 1,818
14년 전 조회 1,349
14년 전 조회 1,466
14년 전 조회 2,712
14년 전 조회 1,473
14년 전 조회 2,981
14년 전 조회 1,174
14년 전 조회 4,047
14년 전 조회 1,270
14년 전 조회 2,627
14년 전 조회 4,032
14년 전 조회 1,308
14년 전 조회 1,485
14년 전 조회 1,865
14년 전 조회 1,360
14년 전 조회 1,892
14년 전 조회 1,795
14년 전 조회 1,895
14년 전 조회 1,723
14년 전 조회 1,253
14년 전 조회 1,750
14년 전 조회 1,747
14년 전 조회 1,611
14년 전 조회 1,194
14년 전 조회 1,114
14년 전 조회 1,582
14년 전 조회 1,040
14년 전 조회 3,623
14년 전 조회 1,066
14년 전 조회 1,458
14년 전 조회 1,097
14년 전 조회 1,142
14년 전 조회 2,385