I am using Flash Builder 4 to display a dependency graph. The source code is in this location - dependency graph sample application I get the error -
A file found in a source-path must have the same package structure '', as the definition's package, 'flare.apps'.
I have imported App.as Can anyone help?
The file
/src/com/example/Foo.asshould begin withpackage com.exampleand define theFooclass. This is a common OO setup that Flash Builder requires.Recreate the
flare/apps/App.asdirectory structure in your project's/srcfolder and you'll be all set.