Which Flash/Actionscript IDE to use — if one should be used at all?

故事扮演 提交于 2020-01-30 06:36:46

问题


I've always used the built-in IDE, but I've been gone from Flash since ActionScript 2.0 in Flash MX... I'm coming back to Flash, and I notice there's a number of IDE's (some of which cost more than the Flash upgrade). So... question for Flash/Actionscript 3 developers -- which IDE to use, if at all?


回答1:


Hands down, definitely use an IDE for ActionScript. We use (and I recommend) Flash Builder 4.

ActionScript 2
In older versions of ActionScript (like Flash MX that you're familiar with), an IDE was not as important. You could get away with most coding in the Flash Development Environment. In those days, most code was bundled with the FLA files that created the SWFs. With ActionScript 3, that changed because unlike AS2, ActionScript 3 is Object-Oriented and this makes all the difference.

ActionScript 3
Now, the best practice is to have next to zero code in Flash's FLA files. All code is now external in *.as files and broken into packages. This was not so much the case in AS2. Nowadays, 99% of the flash projects I create contain zero actionscript inside the FLA files. The exception is for occasional animation controls (like stop() or gotoAndPlay()) that sometimes don't make sense outside of the timeline. Even those, I try my hardest to pull into *.as files whenever possible. Today, code in a FLA is a sign you're probably doing something wrong.


Why Use An IDE?

Here are several reasons I believe one should use an IDE for ActionScript:

  • Debugging Possibly the #1 reason to use an IDE: stepping through the code as it's executing live
  • Stronger Variable Typing The core actionscript language doesn't require you to specify variable types, return types, etc. It can be very easy to code bugs that are difficult to track down. An IDE encourages stronger typing by highlighting code and displaying warnings when types are absent
  • Stronger Error Checking The core language also quietly ignores serious errors. Using only the code editor in Flash MX has generated some painful bugs for me in the past where the root cause was only a typo. The IDE as compared to the Flash Development Environment catches far more bugs at compile time so they don't ever make it into production
  • Code Completion Code completion is so valuable, I wish I could use an IDE just for this StackOverflow post! I type 50X faster in an IDE because I'm constantly using word completion and expanding macros and templates
  • Boiler Plate Code IDE's are great for doing all the crap you don't want to do like generating getters/setters for a field, comments, skeleton classes, etc.
  • API References When you type a method, an IDE will show you the signature of that method so you rarely have to consult online documentation to remember all the properties and methods of a particular class
  • Plugins Integration with Subversion is absolutely essential to our development process. IDEs manage this process for you with the help of plugins. Most essential processes (like unit testing) are supported by IDE extensions that make life easier.
  • Refactoring Most IDEs have built in, powerful refactoring tools which allow you to change your code easily and correctly
  • Project-Level Code Management an IDE lets you manage your code from the project level making it much easier to manage dependencies, link libraries, images, assets, css, source code from other projects and more. It also helps with managing annoying settings and preferences that are easy to forget like compiler settings, command line arguments, runtime configurations, etc.
  • Team Work IDEs are designed to function in the team environment and since they manage your entire project, they make it much easier for multiple people to work on the same set of code. They also encourage conventions, like a project's directory structure, which helps set standards for the community
  • Comparison and Navigation Another feature I use a lot is the built in diff/history tools that let me spot differences in code as well as navigation shortcts that let me jump to where a function is declared or search all references to a function
  • Syntax Highlighting last but not least, one of the obvious IDE benefits that makes code infinitely more skim-able and manageable. I would also lump in with this other visual features like code collapsing, line numbers, icons/alerts in the margians, error/warning highlighting, etc.

That's about all I can think of off the top of my head but I'm sure there are hundreds of other reasons.


Which IDE to Use?

If you or your company has the money, Flash Builder 4. Hands down. It is the defacto IDE from Adobe and it's based on a stripped-down version of Eclipse meaning many of the thousands of useful eclipse plugins work without modification (like Subclipse) and it's cross-platform. Many examples online use Flash Builder and it's hard to go wrong developing with it. One of the less obvious essential features is it's ground-level integration with BlazeDS and Flex--two things you're certainly going to use as you get back into ActionScript.

If your job is not footing the bill, then more cost effective solutions exist. FDT is an open source solution for eclipse. It's pretty good but it lacks the robust suite of features in Flash Builder, most notably the ability to debug code that's running in the browser.

I hope all this helps in some way,

--gMale




回答2:


There is Flash Develop, which is free and good enough. If you are willing to pay, or if you'd be doing Flex development too, Flash Builder from Adobe (the erstwhile Flex Builder) is the best choice..

If all you care about is syntax highlighting, and you don't like the CS3 ide, Notepad++ will do it for you.




回答3:


I'd suggest powerflasher's eclipse plugin FDT or jetbrains IDEA IDE




回答4:


I have always used a plain text editor to write AS code (in both AS2 and AS3.) I tend to use TextPad on windows (mainly out of habit as the shortcuts are now seemingly built into my fingers) and TextMate in Mac OS, each with relevant syntax highlighting installed. Note that personally I don't find debugging anywhere near as important as syntax highlighting & autospacing, so this pattern won't suit everyone!

I then either run an instance of Flash CS4 in the background (at work, where I have the license) or just run flex build scripts from a shortcut or terminal (when at home and without the flash license.)

A quick tip if you are coding these scripts yourself - you can build pure actionscript applications using the flex builder if you just run

$ mxmlc DocumentClass.as

and use that file's constructor as entry point, and import all your packages from subfolders from there. This pattern has pretty much replaced my need for a trial version of flash and an empty FLA in AS3 now. I mention this as it is seemingly undocumented, and all Adobe documentation implies that you need an mxml base file somewhere.




回答5:


I've always used Flex/Flash Builder for Actionscripting. I hear that CS5 has better integration between Flash Builder and Flash, so if you need to work in both it has a nice workflow.




回答6:


I've used Sepy for all of my ActionScript development for nearly three years now. Give it a shot. :)

Sepy ActionScript Editor



来源:https://stackoverflow.com/questions/3165466/which-flash-actionscript-ide-to-use-if-one-should-be-used-at-all

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!