home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / oddech / bechpack / bechpack.exe / scripts / frame_1064 / DoAction.as < prev   
Text File  |  2002-10-29  |  722b  |  37 lines

  1. function createMosquitos(count)
  2. {
  3.    var i;
  4.    i = 1;
  5.    while(count >= i)
  6.    {
  7.       _root.attachMovie("mosquito","mosquito" + i,i);
  8.       i++;
  9.    }
  10. }
  11. function changeCursor(movieclip)
  12. {
  13.    Mouse.hide();
  14.    _root.attachMovie(movieclip,"customCursor",9999);
  15.    _root.customCursor.startDrag(true);
  16. }
  17. function calculateRandom(min, max)
  18. {
  19.    return Math.floor(Math.random() * (max + 1 - min)) + min;
  20. }
  21. function playSound(max, x, soundID)
  22. {
  23.    var soundobject;
  24.    soundobject = new Sound();
  25.    soundobject.attachSound(soundID);
  26.    if(x < 0)
  27.    {
  28.       x = 0;
  29.    }
  30.    else if(max < x)
  31.    {
  32.       x = max;
  33.    }
  34.    soundobject.setPan((x - max / 2) * 100 / (max / 2));
  35.    soundobject.start();
  36. }
  37.