Drawing lines in Flash
Drawing lines in Flash
Out of context: Reply #1
- Started
- Last post
- 5 Responses
- unfittoprint0
something like:
this.createEmptyMovieClip( "myMC", 2);
with ( myMC )
{
lineStyle( 5, 0xFF0000, 100 );
moveTo( 200, 200 );
lineTo( 300,300 );
lineTo( 100, 300 );
lineTo( 200, 200 );
}