Can anybody help me here? I was learning API a while ago, and I think of making a game. I already drew the main lines for the map, BUT, whenever I try to fill it it wont be filled!! Can you tell me why?? This is the code. I even made the lines larger so that that wasnt a reason to not be filled:
_root.createEmptyMovieClip("Base", 13);
with ("Base") {
lineStyle(2, 0x09D741, 100);
beginFill(0x07C73C, 50);
moveTo(-2, 250);
lineTo(252,250);
moveTo(250,410);
lineTo(250,248);
moveTo(1,248);
lineTo(1,402);
moveTo(-5,400);
lineTo(255,400);
endFill();
}
Can anybody please help me?