主题:  look!flashmx's bug?

金山羊

职务:普通成员
等级:4
金币:10.0
发贴:827
注册:2002/1/6 14:44:13
#12002/3/12 11:24:21
_root.createEmptyMovieClip("mc",0);
with(mc)
{
    lineStyle( 0, 0xff0000, 100 );
    moveTo(0,0);
    lineTo(10000,10000);
    _x = 100;
    _y = 100;
}
//if your line was too long,it would wrong!
//run this actions,and zoom in,zoom out,modify the quality and you will look the bug!


5d.cn
FLASHDEP
TECHNOLOGY SUPPORT
JAVA/ACTIONSCRIPT/javascript
CFML/JSP/COLDFUSION/FLASH REMOTING
JRUN/COLDFUSIONMX
FLASH/DREAMWEARER

torain

职务:普通成员
等级:1
金币:0.0
发贴:33
注册:2000/12/1 17:05:57
#22002/3/12 12:59:47
//actions in Frame1
var i=0.01
_root.onEnterFrame=function (){
    while(i<=1){
    trace(i+=0.01);
    }
    }