Vet開発者ですが、Flashを初めて使用しました。私はこのActionScriptとFlashの共有インポートフォルダを作成する方法を教えてください。
MyProjA
|-- MyProjA.fla
|-- MyProjA.as
|-- Common <-- Common code for all projects
|--Common.as
MyProjB
|-- MyProjB.fla
|-- MyProjB.as
|-- Common <-- Duplicate of the one in MyProjA
|--Common.as
のような構造を持っている...と私が欲しいのは、これは一般的なものは、ディスク上の任意の場所にすることができます(ただしかもしれ...
MyProjA
|-- MyProjA.fla
|-- MyProjA.as
MyProjB
|-- MyProjB.fla
|-- MyProjB.as
Common <-- *Not* necessarily in the same folder as MyProjA and MyProjB
|--Common.as
...です)C/C++などと同様に、特定のフォルダをインクルードパスの一部として指定したいと考えています。
Howyadoodat?