From FlashDevelop
Features Tour
Interface
| Code completion
| Code generation
| SWF/SWC exploration
| Code documentation
Helpers
Shortcuts
- Ctrl+Space - regular completion list
- Ctrl+Alt+Space - show all project types
- Ctrl+Shift+Space - method call tip
Smart code completion
|
- FlashDevelop's code completion works with your and others classes.
- Press Tab to expand usual code snippets (function, get/set, for, while, if,...).
- See how the list tips are filled with information extracted from the code comments.
|
|
- FlashDevelop knows all your project classes,
- so just let FlashDevelop automatically import them for you.
|
|
- FlashDevelop completes the events that the object actually dispatches (as declared in the class metadatas).
- And the appropriate Event class will automatically be imported.
|
Typed Array/Vector code completion
|
- FlashDevelop was the first ActionScript editor with Vector types code completion.
- FlashDevelop supports "Strictly typed Arrays" code completion as introduced by mtasc (available in AS2, AS3)
|
Smart Proxy typing
dynamic class MCProxy
extends /*MovieClip*/Proxy {...}
...
var mc:MCProxy;
mc. //completes as MovieClip
|
- FlashDevelop offers a very smart code completion for Proxy classes - use them as easily as the "proxied" type.
|
Rich code completion
|
- FlashDevelop has a rich code completion - the code call-tips show you the methods parameters and event extracts information from the original code's documentation.
- Recognized code comments syntax:
/**
* Javadoc standart comment block
*/
<your declaration here>
/// custom "3 slashes" line comments
<your declaration here>
|
|
- If the code extracts are not enough, press F1 to get the complete comments from the original code!
|
Mouse hover for information
|
- Move your mouse over anything in your code to see it's type and declaration location.
|
More?
See Code generation