Start ColdFusion Builder and Flash Builder independently
Installing ColdFusion Builder and Flash Builder on my new laptop I wanted to be able to run them separately if I wanted to. For instance if I just wanted to have a shortcut that launched Flash Builder that's pretty easy as the default perspective for Flash Builder is the Flash Builder perspective. But what if when I clicked on the shortcut I wanted it to open the ColdFusion Builder perspective?
Well thanks to some pointers in the right direction from Charlie Arehart regarding the start up switches for eclipse I came to the following solution. Now I installed my software to D:\Adobe so the following examples show my install path. I also installed Flash Builder as my base and installed ColdFusion Builder as the plug-in. If you want to set it up you will need to change the install path to reflect your own setup.
The -perspective switch tells the start-up process which perspective to use, either Flash Builder or ColdFusion Builder. The issue is though that when you start up say Flash Builder and then you click on your other shortcut to open ColdFusion Builder, the Flash Builder instance is already using the workspace so when you open up ColdFusion Builder you will get a message saying jus that and that you need to choose another workspace. To get around this we can use the -data switch to tell the shortcut what workspace to use.
Launch to Flash Builder"D:\Adobe\Adobe Flash Builder 4\FlashBuilder.exe" -perspective com.adobe.flexbuilder.standalone.product -data @user.home/Adobe Flash Builder 4
Launch to ColdFusion Builder"D:\Adobe\Adobe Flash Builder 4\FlashBuilder.exe" -perspective com.adobe.ide.coldfusion.perspective.CFML -data @user.home/ColdFusion Builder
0 comments - Posted by Steve Onnis at 12:58 AM - Categories: Coldfusion | ColdFusion Builder | Flash Builder | General