Gallery.as

From Organic Design wiki
Revision as of 01:47, 10 April 2006 by Rob (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

layer = 99999;

createEmptyMovieClip('femaleCap', layer-- ); femaleCap.loadMovie("http://organicdesign.co.nz/wiki/images/d/d4/Female-cap.swf");

with (femaleCap) { _x = 350; _y = 20;

}

// start drag femaleCap.onPress = function() { // this.startDrag( false, 0, 0, 600-width-2, 400-height-2 );

   this.startDrag();
   };

// drag end femaleCap.onRelease = function() {

   this.stopDrag();
   };   

// drag end _root.onDragOut = function() {

   this.stopDrag();
   }; 

// per-frame function function reduce() { }