When will be comming right update for fl cs3?
For fun, try this class, hehehe…
Best regards to All:)
package {
public class StringAutoformatBug {
private var first_bug:String;
public function StringAutoformatBug() {
///FROM mirek.nysa@wp.pl/////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////
//================buggy formatting at the end, adds new "; chars=======//
// try autoformat this line
first_bug="Lorem ipsum dolor sit amet, consectetuer \"adipiscing elit\"";
/////////////////////////////////////////////////////////////////////////
traceBug();
}
private function traceBug():void {
///////////////////////////////////////////////////////////////////////
//========NOW uncoment this line and try autoformat==================//
//trace("bug is in the \"adipiscing elit\", or \"adipiscing elit\".");
///////////////////////////////////////////////////////////////////////
//:Error with autoformat near line:trace("bug is in the \"a......
}
}
}