I’m not sure why but I can’t get this to work. I’m just trying to make a graph based on my array. Each piece of my array is (x,y).
root.createEmptyMovieClip (“graphedlines”, 10);
with (_root.graphedlines){
lineStyle (5, 0x000000, 100);
moveTo (aray[0])
lineTo (aray[0])
lineTo (aray[1])
lineTo (aray[2])
lineTo (aray[3])
lineTo (aray[4])
lineTo (aray[5])
lineTo (aray[6])
lineTo (aray[7])
}