
Re: ExportSWC plugin unable to find compc.exe?
from SWCBuilder.cs:
Code:
protected bool RunCompc(string confpath)
{
try
{
// get the project root and compc.exe location from the command argument
FileInfo compc = new FileInfo(FlexSdkBase + "\\bin\\compc.exe");
if ((!ProjectPath.Exists) | (!compc.Exists))
throw new FileNotFoundException("Project or compc.exe not found", ProjectPath.FullName + "|" + compc.FullName);
Code:
protected string FlexSdkBase
{
get { return (string)AS3Context.PluginMain.Settings.FlexSDK.Clone(); }
}
It may be the case that your
Tools --> Program Settings --> AS3Context --> Flex SDK Location has a trailing
\bin which is being concatenated with
\bin\compc.exe.