Donaldini

Untitled

Jun 15th, 2011
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
  2. //  Mouse Click: add Images button             
  3. // °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
  4. private function clickImages(event:MouseEvent):void {
  5.     var btnImage:ImageButton = event.currentTarget as ImageButton;
  6.  
  7.     if (btnImage.txtAdd.text == "ADD MARKERS"){
  8.         trace("You want to add markers?");
  9.         btnImage.txtAdd.text = "ADD IMAGES";
  10.         cursorMarker.visible = true;
  11.         Mouse.hide();
  12.                
  13.     } else {
  14.         trace("You want to add images?");
  15.         btnImage.txtAdd.text = "ADD MARKERS";
  16.  
  17.         cursorMarker.visible = false;
  18.         Mouse.show();
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment