Hello
What is the best way to use actionscript to have a line slowly draw down the screen when a frame loads.
i have tried this:
x=100
do {
lineStyle(5,0xffffff,100);
moveTo(250,100);
lineTo(250,x);
x+=1
} while (x<200);
but its so quich you cant even notice it drawing.
Please could somebody tell me why its so quick when I do it my way and also let me know the best way to do it.
Thanks
What is the best way to use actionscript to have a line slowly draw down the screen when a frame loads.
i have tried this:
x=100
do {
lineStyle(5,0xffffff,100);
moveTo(250,100);
lineTo(250,x);
x+=1
} while (x<200);
but its so quich you cant even notice it drawing.
Please could somebody tell me why its so quick when I do it my way and also let me know the best way to do it.
Thanks