3

im drawing a line from 0,0 to 100,100

im using this to modify the linestyle:

draw_line.graphics.lineStyle(1, 0xFF0000);

That line is now of 1 thickness.

Is there anyway i can change the thickness of the line to say 10, but without redrawing the line?

Ozzy
  • 10,285
  • 26
  • 94
  • 138

2 Answers2

4

No, it is not possible with the way the flash player works, you must redraw the line. Or use some kind of library that automatically redraws it for you (for example a Line object in the Flex 4 Framework)

davr
  • 18,877
  • 17
  • 76
  • 99
0

try this:

draw_line.scaleX = 10;

Not exactly the same, but could possibly work under certain circumstances.

Colin Brogan
  • 728
  • 10
  • 26