Index: src/org/netbeans/modules/project/ui/actions/NewProject.java =================================================================== RCS file: /cvs/projects/projectui/src/org/netbeans/modules/project/ui/actions/NewProject.java,v retrieving revision 1.29 diff -u -r1.29 NewProject.java --- src/org/netbeans/modules/project/ui/actions/NewProject.java 30 Jun 2006 21:27:22 -0000 1.29 +++ src/org/netbeans/modules/project/ui/actions/NewProject.java 1 Feb 2007 15:06:40 -0000 @@ -176,7 +176,9 @@ } // Show the project tab to show the user we did something - ProjectUtilities.makeProjectTabVisible( true ); + if (System.getProperty("bluej.edition") == null) { + ProjectUtilities.makeProjectTabVisible( true ); + } // Second open the files if (filesToOpen.isEmpty() && lastProject != null) { Index: src/org/netbeans/modules/project/ui/actions/OpenProject.java =================================================================== RCS file: /cvs/projects/projectui/src/org/netbeans/modules/project/ui/actions/OpenProject.java,v retrieving revision 1.15 diff -u -r1.15 OpenProject.java --- src/org/netbeans/modules/project/ui/actions/OpenProject.java 30 Jun 2006 21:27:22 -0000 1.15 +++ src/org/netbeans/modules/project/ui/actions/OpenProject.java 1 Feb 2007 15:06:40 -0000 @@ -137,8 +137,10 @@ Node[] nodesArray = new Node[ nodes.size() ]; nodes.toArray( nodesArray ); ptLogial.getExplorerManager ().setSelectedNodes (nodesArray); - ptLogial.open (); - ptLogial.requestActive (); + if (System.getProperty("bluej.edition") == null) { + ptLogial.open (); + ptLogial.requestActive (); + } } catch (Exception ignore) { // may ignore it } Index: arch.xml =================================================================== RCS file: /cvs/projects/projectui/arch.xml,v retrieving revision 1.18 diff -u -r1.18 arch.xml --- arch.xml 14 Nov 2006 23:41:35 -0000 1.18 +++ arch.xml 1 Feb 2007 15:06:41 -0000 @@ -648,6 +648,15 @@