At 7/25/07 10:14 AM, jmtb02 wrote:
Flash CS3 is wierd
So this is a fun story. I am working on this project right now, and when I export it in the actual program, it works fine. However, running it in the browser, it freaks out. In fact, it will randomly perform tasks it was not asked to do. For example, I will remove all the code from everything in the flash file. Then, I'll say "gotoAndStop(15);". The flash will then randomly choose elements from frame 6 and frame 15 and throw them on the screen in a heap. It's great refreshing the browser over and over again, to see the different randomly generated outcomes (no code, remember, except for the gotoAndStop).
Also, any bitmaps after frame 10 won't show up unless I link them for actionscript use.
Flash CS3 is FUN!
Wow odd...
With flash 8 I had a glitch that would occur sometimes where flash would only export the first frame of various movieclips. It got annoying. In 8 AND cs3 there's issues where it makes the sound screechy sometimes.
Anyway my biggest beef with the CS3 is the autoformat button. I used it all the time in flash 8 cause my code is messy. However in flash 9, it screws up so much!
EXAMPLE 1:
Before Autoformat:
return (a+b*c)/3+(c+d*(a+b))/4;
after autoformat:
return a + b * c / 3 + c + d * a + b / 4;
Example 2:
Before autoformat:
for(){
stuff;
}
After autoformat:
for(){
}
stuff;
};
After 2nd autoformat:
ERROR expecting { before }
Seriously wtf?
It also doesn't remove line breaks which is a pain.
I've seen it untab an entire enterframe block (as2). Looks ugly, autoformat again, it tabs it but puts a line break every other line.