What the heck, every time i implement rotation, it makes everything go upside down and inside out. Somebody wanna tell me how to make this work properly
var line1:greLine = new greLine();
var line2:greLine = new greLine();
addChild(line1)
addChild(line2)
line2.y = 200
line1.y =200
line2.x = 100
line1.x =100
line1.width = 0
line1.height = 5
line2.height = 0
line2.rotation = 90
TweenMax.to(line1, 1, {width: 500});
TweenMax.to(line2, 1, {height: 500})
It plays out as two intersecting lines (both are part of the greLine class), going right and going down
ie
----------------------------->
|
|
|
|
|
|
/