Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
- // Mouse Click: add Images button
- // °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
- private function clickImages(event:MouseEvent):void {
- var btnImage:ImageButton = event.currentTarget as ImageButton;
- if (btnImage.txtAdd.text == "ADD MARKERS"){
- trace("You want to add markers?");
- btnImage.txtAdd.text = "ADD IMAGES";
- cursorMarker.visible = true;
- Mouse.hide();
- } else {
- trace("You want to add images?");
- btnImage.txtAdd.text = "ADD MARKERS";
- cursorMarker.visible = false;
- Mouse.show();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment