
Code Generation: Auto-Cast
Hi,
just another feature request. How about automatic casting?
For example this line:
Code:
var mc:MovieClip = getChildAt(i);
should be converted into this:
Code:
var mc:MovieClip = MovieClip(getChildAt(i));
Best would be to let FD do this automaticalls without having to push a button.
BTW: Can I create my own code generators some way? The snippets are not powerfull enough to my mind..