// labs

Archive for the ‘eclipse’ tag

Launching Multiple Instances of Eclipse

without comments

I've been a fan of Eclipse for a long time now, even before FDT and Flash Builder were built around it. The use of workspaces, once you get your head around them, is powerful for focusing your head on the work at hand, keeping all associated projects within the one space.

However there are times when I wish I was able to have multiple workspaces open. And too the rescue comes the command line.
Read the rest of this entry »

Written by Michael Archbold

January 27th, 2012 at 10:24 am

Posted in tips

Tagged with , , , , ,

Eclipse (FlashBuilder) Keyboard Shortcuts

without comments

Just assembling a quick list of some of the shortcuts I use everyday in Eclipse. Let me know if you have any other favourites!

  • Code hinting: Ctrl + Space
  • Change view: Cmd + 3
  • Open any file quickly without browsing for it in the Package Explorer: Cmd + Shift + R
  • Open a type (e.g.: a class, an interface) without clicking through interminable list of packages: Cmd + Shift + T
  • Go directly to a member (method, variable) of a huge class file, especially when a lot of methods are named similarly: Cmd + O
  • Go to line number N in the source file: Cmd + L, enter line number
  • Go to other open editors: Cmd + E
  • Go to a type declaration: F3 or Cmd + click on declaration

Note: Cmd == Ctrl on Windows/Linux

Written by Michael Archbold

April 15th, 2011 at 11:00 am

Posted in tips

Tagged with , ,

Open Exisiting Project in Eclipse (Flex)

without comments

This one has been frustrating me for a while, I just wanted to open an actionscript project that we have in our svn into my workspace.

Seemed like a simple concept, but I only recently discovered how to do it:

  • Go to File > Import
  • Select General > Existing Projects into Workspace
  • Find your directory with your .project file and select finish

Seems so simple now.

Written by Michael Archbold

February 3rd, 2010 at 9:38 am

Posted in tips

Tagged with , ,