Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Dragging Foto
  2.  
  3. on (press) {
  4.     startDrag(this, false);
  5. }
  6.  
  7. on (release) {
  8.     stopDrag();
  9. }
  10.  
  11.  
  12. //Zoom In
  13.  
  14. on (press) {
  15.     _root.Zoom1._xscale += 20
  16.     _root.Zoom1._yscale += 20
  17.    
  18. }
  19.  
  20. //Zoom Out
  21.  
  22. on (press) {
  23.     _root.Zoom1._xscale -= 20
  24.     _root.Zoom1._yscale -= 20
  25.    
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement