For example:
import x.display.SmartLoader;
import x.events.EventPriority;
import x.geom.Area;
runtime::air
{
import x.codecs.bitmap.webp.WebP;
}
public class ...
If I write var errorEvent:ErrorEvent and select ErrorEvent from code completion. The code becomes:
import x.display.SmartLoader;
import x.events.EventPriority;
import x.geom.Area;
runtime::air
{
import x.codecs.bitmap.webp.WebP;
import flash.events.ErrorEvent;
}
public class ...
This is not what I expected. The code should be:
import x.display.SmartLoader;
import x.events.EventPriority;
import x.geom.Area;
runtime::air
{
import x.codecs.bitmap.webp.WebP;
}
import flash.events.ErrorEvent;
public class ...
Thanks!
For example:
If I write
var errorEvent:ErrorEventand selectErrorEventfrom code completion. The code becomes:This is not what I expected. The code should be:
Thanks!