and it said put this code into ur first frame i did then i went to test movie and nothing happens. Oh yea and i have Flash 5. how come it doesnt work. it just shows white page.
i did file>new
modify>movie and change bg to black
then right click on first frame and click actions
and pasted:
// First I create a clip that will hold
// my line (it could be the _root)
_root.createEmptyMovieClip(“holder”,1);
// I define the style of the line
// 1: thickness
// 0x000000: color (white)
// 100: alpha
holder.lineStyle(1,0x000000,100);
// I put the pen at (150,200)
holder.moveTo(150,200);
// I draw a line to the point (300,200)
holder.lineTo(300,200);