Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse 4 » InteractiveSplash screen not load
InteractiveSplash screen not load [message #699715] Fri, 22 July 2011 07:26 Go to next message
Eclipse UserFriend
Hi, I want to display a splash screen with log-in session. But with E4 when I set in
file "Product definition" > Splash > Customization > Template > Interactive-Asimulated log-in session, the file assiciated to the spash screen did not executed.

Is anybody have run spash with this feature?

In my file I have this line :
<splash
location="com.smacl.application"
handlerType="interactive" />

And in plugin.xml :

<extension
point="org.eclipse.ui.splashHandlers">
<splashHandler
class="com.smacl.application.splashHandlers.InteractiveSplashHandler"
id="com.smacl.application.splashHandlers.interactive">
</splashHandler>
<splashHandlerProductBinding
productId="com.smacl.application.product"
splashId="com.smacl.application.splashHandlers.interactive">
</splashHandlerProductBinding>
</extension>

Re: InteractiveSplash screen not load [message #715303 is a reply to message #699715] Sat, 13 August 2011 07:53 Go to previous message
Deepak  is currently offline Deepak Friend
Messages: 1
Registered: July 2009
Junior Member
The following is the answer for Eclipse 3.7

I am not sure whether this is a plugin or RCP. But the following XML should work if your are testing a Plugin. Note the attribute


productId="org.eclipse.platform.ide"




Hence the extension should look like the following

<extension
         point="org.eclipse.ui.splashHandlers">
      <splashHandler
            class="sample6.splashHandlers.InteractiveSplashHandler"
            id="sample6.splashHandlers.interactive">
      </splashHandler>
      <splashHandlerProductBinding
            splashId="sample6.splashHandlers.interactive"
            productId="org.eclipse.platform.ide">
      </splashHandlerProductBinding>
   </extension>

Previous Topic:org.eclipse.emf.ecore.xmi.PackageNotFoundException: Package with uri 'http://www.eclipse.org/ui/2008
Next Topic:(no subject)
Goto Forum:
  


Current Time: Tue Mar 19 06:16:10 GMT 2024

Powered by FUDForum. Page generated in 0.02077 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top