Thanks, kglad! I have set the "verbose" setting you advised.
The basic tutorial that I have setup is a "Hello World" trace. I
have "helloWorld.as" in the same directory as "helloWorld.fla". The
.as file contains the following:
package{
import flash.display.MovieClip;
public class helloWorld extends MovieClip{
public function helloWorld(){
trace('Hello!');
}
}
}
Within Flash CS3 action editor, the check syntax button
produces the pop-up that the script contains errors, but the
Complier Errors panel is still empty (even after setting to
"verbose").
In my .fla file, the Document class is set to "helloWorld".
When I Test Movie, nothing appears in the Output window.
As mentioned earlier in the thread, if I start a new Flash
ActionScript 2.0 file, the Check Syntax in the action editor does
populate meaningful debugging entries in the Compiler Errors panel
when the code is malformed.
As another test I changed the directory name of the target of
my $(AppConfig)/ActionScript 3.0/Classes setting from: C:\Program
Files\Adobe\Adobe Flash CS3\en\Configuration\ActionScript
3.0\Classes
to: C:\Program Files\Adobe\Adobe Flash
CS3\en\Configuration\ActionScript 3.0\
Classes2
I just was concerned that under ActionScript 3.0 something
was not working correctly with the Compiler Errors panel. However,
with the physical directory renamed, Check Syntax produces a pop-up
stating, "This script contains no errors", but the Compiler Errors
panel now contains an entry about "Warning: 5004: The file
'playerglobal.swc' . . . could not be found . . . ." Obviously,
this was expected, and it confirms that under ActionScript 3.0, my
Compiler Errors panel is working(?)
Do you think that there is an update that I am missing, or
some other critical ActionScript 3.0 component that needs to be
installed? Perhaps you could suggest a better approach to making a
simple test case application that uses ActionScript 3.0 as none
that I have tried from the Adobe community sites seem to get beyond
the original issue I was conveying in this thread.
Thanks again for your guidance!