I just upgraded from Adobe Flash CS6 to Adobe Flash CC 2014 and I noticed that Adobe changed how the "Format Code" command formats a Greensock code line (arrays). Does anyone have a workaround or solution?
The way CS6 formated a line of Greensock code (my preferred way):
TweenLite.to(mc, 1.5, {x:100, y:200, rotation: 360, ease:Expo.easeInOut, delay:1});
How it formats now in CC 2014:
TweenLite.to(mc, 1.5,
{
x: 100,
y: 200,
rotation: 360,
ease: Expo.easeInOut,
delay: 1
});