Question
fill color in movieclip
with (myClip) {
moveTo(0,0);
lineTo(50,0);
lineTo(50,100);
lineTo(0,100);
lineTo(0,0);
}
this creates shape which is empty .
I want to fill the shape created after i have set a certain parameter to
true. How to do that with movieclip.
beginFill not usable since it starts filling just from begining.
moveTo(0,0);
lineTo(50,0);
lineTo(50,100);
lineTo(0,100);
lineTo(0,0);
}
this creates shape which is empty .
I want to fill the shape created after i have set a certain parameter to
true. How to do that with movieclip.
beginFill not usable since it starts filling just from begining.