View Single Post
Ben Ben is offline 2005-10-24 #7 Old  
ActionScript Code:
  1. mc.onRollOver = mc_over;
  2.  
  3. function mc_over() {
  4. this.onEnterFrame = something;
  5. delete this.onRollOver;
  6. }
  7.  
  8. var b = bounds_mc.getbounds (_root);
  9.  
  10. function something() {
  11. if (_xmouse<b.xMin  || _xmouse>b.bMax || _ymouse<b.yMin || _ymouse>b.yMax {
  12. this.onRollOver = mc_over;
  13. delete this.onEnterFrame;
  14. }
  15. }

edit: Im always too Slow !!!!
Reply With Quote