Has anyone had this issue? I do the following (using Flex Builder 3 w/ sdk 3.1 and Flash Player 10).
// BEGIN CODE --------------------------------------------------
import flash.display.Graphics;
public function get drawGraphics():Graphics {
if(_drawing) {
return _drawing.graphics;
} else {
return null;
}
}
// END CODE ----------------------------------------------------
Every 3rd or 4th time I save my file, Flex Builder removes my import
statement then I get t"1046 Type not found..."

