Is it possible to create 2-3 drawn lines in actionscript?
Wanted to make a dynamic chart, but so far when I add coding for the second line, the first no longer works.
Trying to nest the lines in movie clips didn’t work.
Is this a restriction of the createEmptyMovieClip?
I’m using…
_root.createEmptyMovieClip(“lineFirst”,0);
lineFirst.lineStyle(12,0x000000,100);
lineFirst.moveTo(0,0);
Thanks in advance!