As me and my friend are working on the same source code of a project on flex builder, I'm looking for a solution that makes it possible to work on different compute开发者_如何转开发rs and edit the same source code.
You need to use some of the version control system (VCS). More info about it is here. As for me personally, I prefer to use Subversion. It is convenient and reliable. To work with it right from Eclipse (Flash Builder) you can use Subclipse or Subversive plugins. You can set up Subversion server on the one of the computers where everybody of the team member can have access.
Any version control system would work. Try CVS or SVN, the both have client for eclipse (which is flex builder)
Subversion and Subclipse is the ideal team solution for you. What you're asking for (some type of linked real-time editor) doesn't really exist anywhere (and probably wouldn't be terribly useful, otherwise we'd already be doing it).
So I think the answer to your question is, you just need to coordinate, plan, and communicate and divide up work so that you aren't stepping on each other's code changes. A decent architecture that doesn't cause your code updates to clash all the time is key. (Try dividing the project up into "modules" or sub-components, or even better (if this is applicable), just have one person focus on server-side dev (Java, Coldfusion, or whatever) and have the other worry about the Flex UI. This is one of the easier methods of keeping your client and server code somewhat decoupled, of course you still need to communicate and plan regarding the service interface.
精彩评论