home *** CD-ROM | disk | FTP | other *** search
- function doAnimation()
- {
- var i = 0;
- while(i < g_nStrNum)
- {
- eval("B_Str" + i)._y = 2 - getRandom(5);
- eval("B_Str" + i)._rotation = 8 - getRandom(17);
- i++;
- }
- }
- function getRandom(nMax)
- {
- var nRet = Math.floor(Math.random() * nMax);
- if(nRet == nMax)
- {
- nRet--;
- }
- return nRet;
- }
- var g_nStrNum = 3;
- this.gotoAndPlay(_currentframe + 1);
-