PDA

View Full Version : Unable to open file error


Jerry62712
03-13-2009, 05:10 PM
I get the following error in my Flex 3 application:

Severity and Description Path Resource Location Creation Time Id
unable to open 'C:\Flex Builder 3\FSCalc\FSCalc\classes' FSCalc Unknown 1236960023875 859


The file FSProcess.as is located in:
src/classes/FSProcess.as

My application is located in:
src/FSCals.mxml

The application never directly touches FSProcess.as. That is done in:
src/scripts/FSCalc.as

In that file I can see the methods declared in FSProcess.as as proved by the autocomplete working for those. Here is how it is instantiated in FSCalc.as:
private var FSP:FSProcess = new FSProcess();

So why is the application file complaining about folder (classes) from an unknown location according to the error message?