Custom Splash Screen for HTML Export?

We're finding our customers are getting confused with the HTML screen that initally displays a single button to play our Captivate lessons. Is there any way inside Captivate to add some context to that screen?
TIA
Retiarius

Hello,
I read your postings here and I did what you proposed.
Nevertheless the splash screen doesn't show up.
I'm using Java 1.4.1, Web Start 1.2; the jnlp file
looks like that:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp codebase="http://venus/example-client/" href="example.jnlp">
<information>
<title>Example</title>
<vendor>My Company/vendor>
<description>JBoss Client</description>
<icon href="splashscreen.jpg" kind="splash" />
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.4+"/>
<jar href="example-client.jar" main="true"/>
<jar href="jbosssx-client.jar"/>
<jar href="concurrent.jar"/>
<jar href="jboss-client.jar"/>
<jar href="jboss-common-client.jar"/>
<jar href="jboss-j2ee.jar"/>
<jar href="jnp-client.jar"/>
<jar href="log4j.jar"/>
<jar href="datepicker.jar"/>
<jar href="jcommon-0.7.1.jar"/>
<jar href="jfreechart-0.9.4.jar"/>
<jar href="xercesImpl.jar"/>
<jar href="xml-apis.jar"/>
<jar href="xalan.jar"/>
<property name="java.security.auth.login.config" value="http://venus/example-client/auth.conf"/>
</resources>
<application-desc main-class="com.mycompany.ui.Example"/>
</jnlp>
any idea why webstart doesn't use the custom "splashscreen.jpg"?
a properly splashXXXXX.jpg has been created in .javaws/cache/splashes, as well as an entry in splash.xml.
thanx for help,
michael

Similar Messages

  • Custom splash screen for app under JWS 1.2 from 1.4.1 beta?

    Has anyone gotten a custom app's splash screen to come up instead of the damn Sun Java Web Start splash screen to come up when the app starts from a desktop icon or if you launch it from JWS?
    I added it to my jnlp file as specified in the docs, but it just doesn't come up :-(
    <description kind="tooltip">TransMedia 2</description>
    <icon kind="default" href="transmedia.gif" />
    <icon kind="selected" href="transmedia.gif" />
    <icon kind="disabled" href="transmedia.gif" />
    <icon kind="rollover" href="transmedia.gif" />
    <icon kind="splash" href="transmediasplash.gif" />
    </information>

    Hello,
    I read your postings here and I did what you proposed.
    Nevertheless the splash screen doesn't show up.
    I'm using Java 1.4.1, Web Start 1.2; the jnlp file
    looks like that:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="http://venus/example-client/" href="example.jnlp">
    <information>
    <title>Example</title>
    <vendor>My Company/vendor>
    <description>JBoss Client</description>
    <icon href="splashscreen.jpg" kind="splash" />
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.4+"/>
    <jar href="example-client.jar" main="true"/>
    <jar href="jbosssx-client.jar"/>
    <jar href="concurrent.jar"/>
    <jar href="jboss-client.jar"/>
    <jar href="jboss-common-client.jar"/>
    <jar href="jboss-j2ee.jar"/>
    <jar href="jnp-client.jar"/>
    <jar href="log4j.jar"/>
    <jar href="datepicker.jar"/>
    <jar href="jcommon-0.7.1.jar"/>
    <jar href="jfreechart-0.9.4.jar"/>
    <jar href="xercesImpl.jar"/>
    <jar href="xml-apis.jar"/>
    <jar href="xalan.jar"/>
    <property name="java.security.auth.login.config" value="http://venus/example-client/auth.conf"/>
    </resources>
    <application-desc main-class="com.mycompany.ui.Example"/>
    </jnlp>
    any idea why webstart doesn't use the custom "splashscreen.jpg"?
    a properly splashXXXXX.jpg has been created in .javaws/cache/splashes, as well as an entry in splash.xml.
    thanx for help,
    michael

  • Custom splash screen not appearing in the Dynamic created jnlp()

    Hi,
    I am not able to show my custom splash screen while starting the webstart application, instead getting the "sun webstart logo". I am dynamically generating the jnlp file using jsp (struts application). Application is working perfectly except custom splash screen. Below is my jsp which will generate the jnlp on fly. The test.gif file is in place.
    <% response.setContentType("application/x-java-jnlp-file");
      response.setHeader( "Pragma", "no-cache");
      response.setDateHeader( "Expires", 0 );%>
    <%@ page import="java.io.*" %> 
    <%String baseURL = WebUtil.webUrlParser(request.getRequestURL().toString(),request.getContextPath(),request.getServerPort());%>
    <jnlp      spec="1.0+" codebase="<%=baseURL%>/cs_jnlp">
    <information>
        <title>Launching JNLP</title>
        <vendor>Satyasai</vendor>
        <icon href="/images/test1.jpg"/>
        <homepage href="docs/help.html"/>
       <description>test</description>
            <icon kind="splash" href="images/test.gif" />
       </information>
          <security>
            <all-permissions/>
         </security>
         <resources>
       <j2se version="1.6+"/>
       <jar href="<%=baseURL%>/cs_jnlp/AppLaunch.jar"/>
      </resources>
           <application-desc main-class="Launch" >
           <%
           int roleId = (Integer)session.getAttribute(Constant.USER_TYPE);
           String sessionID=(String)request.getAttribute("SELECTION_SESSION_ID");
           String action=(String)request.getAttribute("action");
           String userID = (String)session.getAttribute(Constant.LOGIN_ID);       
           String sessionType=(String)request.getAttribute("sessionType");        
           %>
           <argument><%=sessionID%></argument>
           <argument><%=action%></argument>
           <argument><%=userID%></argument>
           <argument><%=sessionType%></argument> 
    </application-desc>
    </jnlp>If I use normal servlet - jsp using RequestDispatcher to forward request to a jsp which on fly creates jnlp, it shows the my custom splash screen. I am not very sure where is the difference. If I look at both generated jnlps they are almost one and the same. Can any one throw some insight on this.
    Thanks & Regards,
    Satyasai

    Hi Andrew,
    Thanks for your response.
    1. I have launched it number of times but no luck.
    2. I have written a jsp (using servlet + jsp no struts frame work) which will create jnlp on fly, which is showing my custom splash screen. If you refer in the initial post, it is not working with struts kind of framework. See the below jsp which shows custom splash screen. It worked without href.
    3. All jnlps are well formed and perfectly working in my development environment. For security purposes I have not shown some of the texts and logos.
    <% response.setContentType("application/x-java-jnlp-file");
      response.setHeader( "Pragma", "no-cache");
      response.setDateHeader( "Expires", 0 );%>
    <%@page import="java.util.ArrayList" %>
    <%
    String client = (String)request.getAttribute("clientLocation");
    String fileNames = (String)request.getAttribute("filenames");
    String url= (String)request.getAttribute("serverFilesLocation");
    String baseURL = "http://"+request.getLocalAddr()+":"+request.getServerPort()+request.getContextPath();
    %>
    <jnlp spec="1.0+" codebase="<%=baseURL%>/sw_jnlp"> 
      <information>
        <title>Softwares Download</title>
        <vendor>test</vendor>
        <icon href="/images/test1.jpg"/>
        <homepage href="docs/help.html"/>
       <description>Software Downloads </description>
            <icon kind="splash" href="images/logo_small.gif" />
       </information>
       <update check="timeout" policy="always"/>
          <security>
          <all-permissions/>
      </security>
      <resources>
        <j2se version="1.6+"/>        
        <jar href="mod.jar"/>  
      </resources> 
      <application-desc main-class="InstallSW">
      <argument><%=client%></argument>
      <argument><%=fileNames%></argument>
      <argument><%=url%></argument>
      </application-desc>
    </jnlp>Thanks & Regards,
    Satyasai

  • Lightroom won't boot -I only get the splash screen for a second.

    I do have the photographers version of the Creative Cloud which included Photoshop CC 2014 and Lightroom. Everything was working just fine until I upgraded to Lightroom version 5.6. Now when I try to load LR, the slash screen shows for a second then disappears and LR does not load. This occurs on both my Mac (a Mac Pro and a iMac). I uninstalled LR and had creative cloud reinstall but still the same thing is happening  - Splash screen for a second then nothing. Again, this is happening on both Mac's. Photoshop CC 2014 I working just fine.
    Before I call Adobe, any ideas here on this issue. BTW, Creative Cloud App states LR in up to date and installed.
    Thanks
    James

    Hi PBAYARD,
    I see that you are experiencing an issue with your iPod classic. Here is an article for you that will hep you through some troubleshooting steps regarding this issue:
    iPod: No power or frozen - Apple Support
    https://support.apple.com/en-us/TS1404
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • Getting increasingly frequent system shutdown with appearance of the apple splash screen for several minutes then back to logon in the middle of using a variety of APPs or just walking on Safari.

    Using an IPAD 2 running 5.0.1 is frequently shutting down in the middle of a variety of Apps and showing the Apple splash screen for several minutes. This happens occasionally at inopportune times. Once the splash screen clears it goes back to the logon screen and the App that was open is closed. Has anyone else encountered this? Is there a resolution?

    RockHunter wrote:
    This happens occasionally at inopportune times.
    I don't think that there is ever a good time for this to occur.
    What do you mean the Apple splash screen? You see the Apple logo on the screen?
    It appears as though your apps are crashing. Have you tried quitting apps and restarting? Reset the iPad?
    Quit all apps and restart. Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Creating a splash screen for your app.

    Im trying to create a splash screen for my app but im not too sure how it's done.
    Im using the following piece of code.
    public static void main(String[] args)
              JPanel display = new JPanel();
              display.setPreferredSize(new Dimension( (300), (200) ));
              display.setBackground(Color.white);
                   // I WILL PUT AN IMAGE ICON ON A JLABEL HERE              
              display.setVisible(true);
                   // I WILL NEED A DELAY HERE
              test.instance();
    }The problem I am having is that the JPanel is not being displayed. I will also need a way to create a delay, I know that I can't just use Thread.sleep(5000); because the JPanel will require the thread to be running in order to display the panel.
    Does anyone know how I could get my JPanel to display and somehow insert a delay before test.instance();?
    Thanks.

    I made my own a few days before for a database program. It can be easily done with Threads.
    I recommend you create a new class to be used as the spalsh screen , it has to extends JFrame and implements Runnable.
    I ll give you an example. I used the spash screen to display the screen and also to laod the main GUI form so that when the spash screen dispose, the main GUI form displays instantly, making the user think that the application loads faster.
    public void run ()
            try
                 this.setVisible(true);
                 Thread.sleep(2000);
                 // sets the menu visible before disposing
                 guiMenu.setVisible(true);
                 // disposes the object and returns the resources to the OS
                 this.dispose();
            catch(InterruptedException exception)
                exception.printStackTrace();
    // this method must be implement in the class
    // that implements Runnable interface
    //MAIN
    public class Main
        public static void main(String[] args)
            Menu menu = new Menu();
            SplashScreen introScreen = new SplashScreen(menu);
            ExecutorService splashExecutor= Executors.newFixedThreadPool(1);
            splashExecutor.execute(introScreen);       
    }ExecutorService is a subinterface of Executor that declares methods for managing the threads. It also has the method execute (that provides the Executor interface) which when invoked calls the method public void run() of the argument class that must implement Runnable.
    Executors.newFixedThreadPool(1); creates a poll consisting of a 1 thread which is been used by splashExecutor to execute the Runnable.
    Hope i've been of some assistance!

  • Custom splash screen only shows up when command line is used...

    Hi,
    Everything in my Java web start application works perfectly but, the custom splash screen only shows up when command line is used ("C:\Program Files (x86)\Java\jre7\bin>javaws -verbose http://www.xxx.eu/AcSentVivresCrus/AcSentJnlp/AcSent.jnlp"), if I use the shortcut on the desktop or in the start menu, the Java 7 splash screen shows up (tested under Windows Vista and Seven). Does someone have any clues?
    Thanks...
    My jnlp file :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="6.0+" href="AcSent.jnlp">
      <information>
        <title>AcSent : Commande de repas</title>
        <description>AcSent - Commande de repas</description>
        <vendor>AcSent</vendor>
        <homepage href="http://www.xxx.eu" />
        <icon href="acSentIconBiseau.png" />
        <icon href="splashAcSentRC.png" kind="splash" />
        <shortcut online="true">
          <desktop />
          <menu submenu="AcSent" />
        </shortcut>
      </information>
      <security>
        <all-permissions />
      </security>
      <resources>
        <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" max-heap-size="128m" />
        <jar href="AcSentJnlpProgressIndicator.jar" download="progress" />
        <jar href="AcSentJnlp.jar" main="true" version="1.0" />
        <property name="jnlp.packEnabled" value="true" />
        <property name="jnlp.versionEnabled" value="true" />
      </resources>
      <application-desc name="AcSent" main-class="eu.acsent.jnlp.AcSentApplication"
           progress-class="eu.acsent.jnlp.progressindicator.CustomProgress"> 
      </application-desc>
    </jnlp>

    Hi again,
    I made some researches :
    - The link in the generated shorcuts ("C:\Windows\SysWOW64\javaws.exe -localfile -J-Djnlp.application.href=http://www.xxx.eu/AcSentVivresCrus/AcSentJnlp/AcSent.jnlp "C:\Users\Arnaud\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\46\69c1e9ee-1f252d1a") is not the same as the one I use in the command line ("C:\Program Files (x86)\Java\jre7\bin>javaws -verbose http://www.xxx.eu/AcSentVivresCrus/AcSentJnlp/AcSent.jnlp"). Is there a way in the the JNLP file to tell how to generate shortcuts (not the icon, etc., but command line options)?
    - This sample (https://blogs.oracle.com/thejavatutorials/entry/changing_the_java_web_start) displays the splash screen when I click on the the generated shortcuts (I use Windows 7). I have copied the ButtonDemo jar file and the JNLP file on my IIS web server (Windows 2008 Server), this time the splash screen does not show up when I click the generated shortcuts but always shows up when I use the command line. Can someone tell me if it is a trouble with IIS ?
    Thanks again...

  • To display splash screen for certian period of time using threads

    i want to write a program to display splash screen for certian period of time using threads. could some one help me

    If you just want a splash screen: [http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/|http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/]
    If you want to learn threads: [http://java.sun.com/docs/books/tutorial/essential/concurrency/|http://java.sun.com/docs/books/tutorial/essential/concurrency/]

  • Show splash screen for x amount of seconds

    Is there a better way to show a splash screen for x seconds than putting it in a while loop? It just seems so inefficiant and it uses a lot of processing power. This is what I have: long startTime = System.currentTimeMillis();
    while(System.getCurrentTimeMillis() <= startTime + 5000) {
        //wait
    mainPage.setVisible(true);

    javax.swing.Timer.
    Also:
    http://java.sun.com/javase/6/docs/api/java/awt/SplashS
    creen.htmlThank you, I knew there had to be a better way.

  • Chromeless splash screen for application

    hi!
    Anyone know how to create a Chromeless splash screen for java application.Just like the startup screen for the normal application? When the java application start-up the screen will show, it's close after a few screen or user click a button.
    and is there anyway to add background image for a java application?
    Thank in advance!
    jet

    hi there, check a look at this code:
    import javax.swing.*;
    import java.awt.*;
    public class Splash implements Runnable, mainInterface{
    private String initMsg;
    public Splash(String initMsg) {
    this.initMsg = initMsg;
    public void run() {
    splashWindow.getContentPane().add(l, BorderLayout.CENTER);
    splashWindow.pack();
    splashWindow.setSize(splashWindow.getSize().width, splashWindow.getSize().height);
    splashWindow.setLocation(dim.width/2 - splashWindow.getWidth() /2,dim.height/2 -
    splashWindow.getHeight()/2);
    splashWindow.toFront();
    splashWindow.show(); }
    public JWindow getWindow()
    return splashWindow;
    }add this code to the main file
    private static void splash()
              th.start(); // I sleep to let the thread startup and display the window
                   while (splash3.getWindow() == null || !splash3.getWindow().isShowing())
                        try {
                             Thread.sleep(2000);
                        catch (InterruptedException e){}
         }hope u understand this
    asrar

  • Excel 2013 stalling at splash screen for files in use by others

    Excel 2013 is stalling (and not opening) when trying to open a file that is in use by another user. In office 2010 it would prompt the user to open in read-only mode, but in 2013 it seems to just stall and never open. It just stays on the splash screen
    for ever. We have done some testing and it appears that double clicking on an excel file causes this to occur, but will function correctly if the file is opened through excel's file browser.  Any suggestions on how to fix this?  It's a pain to make
    all the users open excel first, then browse through a lengthy network location.  Thanks in advance!
    For information purposes: these are files on a network location shared by many users.

    Hi,
    Did the issue occur when you just installed the Office 2013 or after using Office 2013 sometimes? I recommend we try the following methods and test to check if they are helpful.
    1. Click the File tab>Options>Advanced>scroll down to the General section>Clear the Ignore other applications that use Dynamic Data Exchange (DDE) check box in the General area.
    2. Install the latest Cumulative Update for Excel
    3. Right click on the Start Button>Click 'Open Windows Explorer'> click Organize > Layout> Uncheck Details Pane and Preview Pane.
    On a Windows menu, click on Tools > Folder Options.  In the box that opens up, click on the View tab.  Scroll down the list to “Show pop-up description for folder and desktop items” and clear the checkbox and then click OK.
    4. Check/Disable the Excel add-ins
    5. Repair Office.
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support

  • OpenSUSE-inspired splash screen for GIMP

    I saw this (old) openSUSE splash screen for GIMP and quite liked it:
    And so I created a new version of it, using Inkscape.  The PNG splash screen should be placed in $HOME/.gimp-2.6/splashes/ (or .gimp-2.7/ if you're using gimp-devel).  The font used is FifthLeg, which is based upon the font used in the openSUSE splash, and can be found in the AUR under otf-fifthleg: http://aur.archlinux.org/packages.php?ID=23740.
    The quick install (original version):
    mkdir -p $HOME/.gimp-2.8/splashes
    wget http://oi43.tinypic.com/s33fo9.jpg -O $HOME/.gimp-2.8/splashes/gimp-splash.png
    Here is the SVG file, in case you want to scale it up/down or change anything for your usage:
    http://www.mdn.fm/files/100696_f4f0h/gimp-splash.svg
    Screenshot:
    EDIT: Switched image hosting from ImageShack to TinyPic ... ImageShack has been very unreliable in the past few years.
    EDIT: Updated links (TinyPic is forcing the extension to JPG for whatever reason, but the file itself is a PNG). SVG link is dead.
    Last edited by MkFly (2015-05-27 15:33:01)

    Anonymo wrote:But you used Inkscape to make it? 
    Yes, I appreciate the irony there.  I wanted it to be easily scalable, and I didn't want to make some gigantic XCF.
    That and, I wanted to learn a little more about Inkscape.  The combination of the two (GIMP, Inkscape) is outstanding.
    Last edited by MkFly (2010-05-17 15:58:34)

  • How do I make a Splash Screen for my Android App.

    Hello, I am currently making an app, for school and cant find out how to make a Splash Screen. I'm using Flash Builder 4.7 and can only find tutorials for 4.5. I just need it so that when the app opens there is not a white screen forever while its loading up, any help would be great.
    Thanks!

    Copy into Apple Pages. Export a PDF.

  • [kernel] gensplash framebuffer boot splash screens for 2.6.x

    coming very, very soon....
    if you haven't already, patch a kernel for fbsplash.  i've got 2.6.10 with -nitro2 running just fine, you can grab my PKGBUILD and the patch here - start with the usual Arch config.
    i have a complete splashutils PKGBUILD with added extras including scripts and sample configs. PLUS I have created initscripts patches for fbsplash and fbsplash/bkgdDaemon combined...and yes, i do have the silent progress bar working...
    MWAHAHAHAHA - it's alive!

    After much blood, sweat and tears (not too mention annoying comments from my girlfriend) I have finally managed to patch initscripts to work with silent gensplash! Better late than never, eh?  I had some major headaches with this but I wanted to save it till it was completely ready.
    So, here's the deal and the files - all stored here http://dtw.jiwe.org/share/gensplash
    with a whole bunch of gensplash showcase pics here
    First you need a patched kernel - I am using 2.6.10 and nitro2 - it works great - see the wiki on how to do that.  I have a PKGBUILD and patch file on my server too.
    Then you need a splashutils package - there are several about on the forums but I hope mine will provide everything you might need.  Splashutils needs to link to your patched kernel source when you build it - so my PKGBUILD allows this.  The PKGBUILD also uses a pack i put together containing some handy bits for gensplash.  This includes examples for lilo and grub, a splash rc.d script to start the backgrounds on the virtual terminals (and a config file to support this), and it includes three themes: the ArchPool theme, ArchMetal (created by me but credit to the Arch wallpaper author tho!) and the emergence gentoo theme (which is a bit crap to be honest).
    You can use the PKGBUILD and the gensplash-files pack to build splashutils.
    Pre-built packages of both splashutils, initscripts-custom and initscripts-gensplash (see below) are in my repo – they should work perfectly but YMMV!
    When you install splashutils you should get a handy introduction from the install script.
    If you want to use silent splash you'll also need to patch your initscripts.  You can use splashutils quite happily to add a verbose boot screen and vc backgrounds if you don't want to mess with your initscripts.  I have a neat PKGBUILD which will grab and patch the latest initscripts from the current repo if you do - this one is for initscripts-gensplash
    # Contributor: dibblethewrecker <[email protected]>
    # This package is only a modified version of the arch initscripts package
    # It allows you to easily checkout the latest initscripts and patch them
    # (based on a pkg by Brice Carpentier <[email protected]>)
    # (incorporated a patch by Truls Becken <[email protected]>)
    pkgname=initscripts-gensplash
    pkgver=0.6
    pkgrel=1
    pkgdesc="System initialization/bootup scripts with gensplash support"
    url="http://dev.gentoo.org/~spock/projects/gensplash/"
    backup=(etc/inittab etc/rc.conf etc/rc.local)
    depends=('bash' 'mawk' 'grep' 'coreutils' 'sed' 'splashutils')
    provides=('initscripts')
    conflicts=('initscripts')
    source=(initscripts-gensplash.diff)
    md5sums=('f1770772913855d9539b12b384d9941f')
    build() {
    # check the latest version of initscripts, grab it, copy and extract it to src
    latestver=`pacman -Ss initscripts | grep current | sed "s|current/initscripts ||g"`
    echo
    echo " : Latest version in current repo is initscripts-$latestver"
    echo -n " : Press any key to continue "
    read anykey
    pacman -Sw --noconfirm initscripts
    cp /var/cache/pacman/pkg/initscripts-$latestver.pkg.tar.gz $startdir/src
    cd $startdir/src
    gunzip -cd initscripts-$latestver.pkg.tar.gz | tar xf -
    # create the pkg - no compile required
    mkdir -p $startdir/pkg/etc/{rc.d,conf.d}
    cd $startdir/src/etc
    install -D -m644 inittab $startdir/pkg/etc/inittab
    install -D -m644 rc.conf $startdir/pkg/etc/rc.conf
    for i in rc.local rc.multi rc.shutdown rc.single rc.sysinit; do
    install -D -m755 $i $startdir/pkg/etc/$i
    done
    cd $startdir/src/etc/rc.d
    install -D -m755 network $startdir/pkg/etc/rc.d/network
    install -D -m755 netfs $startdir/pkg/etc/rc.d/netfs
    install -D -m644 functions $startdir/pkg/etc/rc.d/functions
    cd $startdir/src/sbin
    install -D -m755 minilogd $startdir/pkg/sbin/minilogd
    # apply your patches
    cd $startdir/pkg/etc
    patch -Np1 -i $startdir/src/initscripts-gensplash.diff
    If you do want silent splash (you do – that's what all this work is for) i have 2 patches for this - the first simply patches for gensplash (initscripts-gensplash), the second patches for gensplash and the bkgdDaemons patch (combo-plus).  The old initscripts-bootsplash patch is there for completeness and reference too
    The patched initscripts allow you to run silent bootsplash and drop to verbose should errors (fails) occur.  This can be overridden by an option has been added to rc.conf – however, it will ALWAYS drop to verbose if the fs check fails – at least it should – I don't know how to test that.
    As I said the drop option has currently been added to rc.conf but the alternative is to use the conf.d/splash config file from the splashutil pkg (which is already set up to allow this).  I would like feedback on this, for and against, whether you intend to us the package or not.  Here is the way I see it:
    FOR using rc.conf
    You control the majority of boot options from rc.conf – this is a boot option
    rc.conf is already sourced by the scripts by default
    rc.conf is part of the initscripts package
    AGAINST rc.conf
    It is the main config file – do we want to pollute it with extraneous commands for eye candy?
    FOR using conf.d/splash
    It's not rc.conf – it is a gensplash related option in a dedicated gensplash config file
    AGAINST using conf.d/splash
    This file is not actually used for any config options that relate to boot (except to pre-empt a switch ), only for setting backgrounds on virtual consoles
    This file is not part of the initscripts package – although my initscripts obviously depend on apps in splashutils (won't work without it) – cross dependent configs seem dodgy.
    We have to source an extra file in the scripts
    I have also separately packaged the ArchPool and ArchMetal themes but I will have to upload them later because I forgot them today
    Problems and Bugs
    I am having MAJOR problems with the splash rc.d script.  It uses the conf.d/splash config file fine but i still CANNOT get it to work at boot BEFORE i log in - it works fine after - ideas PLEASE!
    It now also seems to cause similar overlay problems to that are described in bug 2 below – with SOME themes you get a persistent progress bar on your vc after the boot process is finished and it seems to affect different themes depending on when you run the script in your daemons array – am baffled – it needs serious work! Bug 2 and this maybe related...more testing needed!
    Last but not least - the bkgdDaemons patch.  If we background a daemon how do we know if it failed or not?  Has anyone thought of that?  My initscripts consider a background daemon BKGD to be DONE for the purposes of displaying the progress bar although the bkgdDaemons patch functionality remains identical and BKGD still shows in verbose.  If a BKGD daemon fails, this maybe as late as after login for DHCP failures, for example, we'll never know until we try to use the network.
    Bugs
    1. When udev starts you get message saying can't open /dev/fb0 and /dev/fbsplash for reading – no apparent ill effects tho? [FIXED]
    2. If you switch to verbose with F2 at a very specific point – during the fs check I think – the background MIGHT corrupt a tiny bit as the verbose overlays the silent (correctly) but then when the fs check finishes I think it still thinks it is in silent mode (due to the mode being passed to it when it starts to execute) and overlays silent again – only for the next rc script to overlay verbose (again correctly).  It's hardly terrible but someone might like to have a look – I can't be bothered right now as there is very little need to switch to verbose with F2 (cos it does it automatically on errors) and you do have to do it at just the right second to get the problem!  Feel free to check it out tho.
    TODO:
    1) workaround the current symlink workaround – DONE (don't ask it was awful)
    2) figure out how to drop out of silent if errors occur at startup - DONE
    3) fix that f**king rc.d script – - SOMETIMES WORKS SOMETIMES NOT -SETTING IT AS THE LAST DAEMON SEEMS TO HELP
    4) investigate the bugs - DONE
    5) enable silent splash in ArchMetal – DONE
    6) make lots of nice gensplash screens for Arch! – EVERYONE!

  • Looking for a Splash screen for desktop login

    Thats it, I have been looking for a splash screen application that can make a splash appear since my login begins with SLIM and that disappears once all startup applications have been loaded.
    I tried plymouth, but I think it cannot be used for this purpose.
    Any recommendation for this? Thanks.

    Do you mean you want a splash screen from the time when you complete logging in with Slim to the time the desktop has finished loading? If that is taking more than just a few seconds then I suggest you change desktops to something lighterweight. Mine takes about 2 seconds (wmii) - not even enough time for a splash scree!. Are you using KDE or Gnome because I believe you can set a startup splash with both those DE's . Check their documentation. Also, show us your ~/.xinitrc .

Maybe you are looking for

  • Is it possible to create and process PO with the line without value?

    Hi, I am wondering whether is it possible to create and process the PO with the lines without the value? I was thinking that this process would allow me to better track and understand the pallets which arrive to the site so I have set up the pallet a

  • Getting Time-Out Error in Sync-Async Bridge

    Hi All, My IP has a Sync-Async Bridge. I have a fork, two senders, two switchs and a transformation step inside the bridge. If XI takes much time to process the IP, the send step that closes sync-async bridge is not waiting for the message after a pa

  • I HAVE A QUESTION IN IYALIAN LANGUAGE

    THE ESSAGE IN MY COMPUTER IS "An inconsistency in your database has been detected . You should quiltthe applicative , relaunch , and restore your data base , to a consistent state . To restore , hold down comand -option when restarting the applicatio

  • Why is there no up to date Flash player for the N8...

    Annoying that there are streaming video sites that I now can't use. I may as well have got an iPhone :-(

  • Only one song exporting with slideshows

    Hi, I looked around a little and didn't see anything about this, so here goes: Suddenly when I export slideshows to iDVD or Quicktime, it's only taking the first song. The rest of the show plays through, it just won't export any music past the first