The autocompletion with Ctrl+Space is not working in special situations.
It happens if the this. prefix is not given. Have a look at the example. If the line with "var box" is commented out the completion works without the this. prefix. If the line is in the code the completion doesn't work.
The completion should work with and without "this." in every context.
Example:
package de.ansorg.cloud {
import mx.containers.VBox;
import mx.core.UIComponent;
public class TestClass extends UIComponent {
private function draw():void {
gr<Caret is here, press Ctrl+Space, nothing is shown>
var box : VBox = new VBox();
}
}
}
Issue was resolved