Advertisement
Guest User

4Alcazer

a guest
Aug 12th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import flash.events.MouseEvent;
  2.  
  3. circle_mc.addEventListener(MouseEvent.MOUSE_DOWN,downf);
  4. circle_mc.addEventListener(MouseEvent.MOUSE_UP,upf);
  5.  
  6. function downf(e:MouseEvent)
  7. {
  8. circle_mc.startDrag();
  9. }
  10.  
  11. function upf(e:MouseEvent)
  12. {
  13. circle_mc.stopDrag();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement