[Flex] Code editor - code assistance when adding parameters to functions?
Hi,
I'm trying to figure out how to activate some form of code assistance when typing code , for example... I'm creating a new custom Object
var myObj : MyClass = new MyClass(
and that point I'm hoping I can get some tips on the parameters i need to type.
Hope that makes sense.
Cheers,
Nick
Please sign in to leave a comment.
Ctrl+P shows parameters info,
Ctrl+Space will suggest variables/fields/etc to use as passed parameter,
Ctrl+Shift+Space ("smart completion") will suggest variables/fields/etc that have type matching required parameter type.
Also Ctrl+Shift+Space suggests correct class for satements like
var myObj : MyClass = new [caret here]
CTRL + P is the one! Thanks Alex!