/fla/modules/content/optionsPanel.fla // допустим тут document class com.elser.modules.content.OptionsPanel ну и class path /../../../
/com/elser/modules/content/OptionsPanel.as:

Код AS3:
package com.elser.modules.content { // путь от класспаса
import com.elser.components.QuadMenu; // другой класс - тоже путь от класспаса
............................
}
/com/elser/components/QuadMenu.as

Код AS3:
package com.elser.components { // путь от класспаса
// если в пакете не указать путь то QuadMenuItem будет искаться
// в /com/elser/components/ которая лежит в /com/elser/components/
import com.elser.components.QuadMenuItem;
.........................................
}
это обеспечивает целостность структуры проекта