How to view splash screen longer ?

Hi,
I'm designing custom splash screen. Is there any way to see it longer time than page loading ? It's some to fast :)
Kuba

Hi!
I don't know (at this moment) the ADF-only way to do this, but you can improvise with plain javascript:
<script>
function showImage() {
  document.all.splashImage.style.visibility = "hidden";
function hideImage() {
  document.all.splashImage.style.visibility = "hidden";
function onLoad() {
  showImage();
  SetTimeout("hideImage();", 1000*5); // SetTimeout takes a number of milliseconds e.g. here 5 seconds
</script>Now, you have to figure out how you want this to be applied to your use-case. If you want this splash to appear after the default (showing the ADF RC initialization) then just attach the onLoad() to the af:document clientListener type=load. If you want to replace the default with your own, you have to more work... you have to figura out how.
Regards,
PaKo

Similar Messages

  • How to View iPhone Screen on Laptop (PC) screen?

    Hi
    The question is How to View iPhone Screen on Laptop (PC) screen? It is not a jailbreak Iphone. I know there is an opp to hook it up to desktop computer screen via HDMI, but will I get the same result plugging Iphone into laptop via HDMI?
    Are there any way to show Iphone screen onto laptop display?
    Thanks.

    You can, however, view the Mac display on your iPhone. Or stream video and music from your Mac, too.
    Google +"Telekenesis" +"iphone" for the details.

  • Photosmart 7520 - How to view on screen the printer status report

    How do I view on the monitor or printer screen the 'Total pages printed' figure, which otherwise I need to frequently print out via "Maintain your computer>Device reports>Print Status report"?  I'm using HP Photosmart 7520e, wireless connected, Windows 7 Ult.  Thanks.
    This question was solved.
    View Solution.

     Hello emmandell,
    Welcome back to the HP Support forums.  I understand that you would like to learn how to view your page count without having to print a Printer Status Report.
    The information can be viewed online using the printer's embedded web server (EWS).  Please follow the steps below:
    1)       Press the wireless icon  on the front panel of the printer to find the printer's ip address.
    2)      Type the ip address of the printer into the address bar of your browser, this will bring up the EWS. I recommend that you bookmark this web page for future use.  Then please click on 'Tools' tab.
    3)      Click on 'Reports' along the left hand side menu
    4)      This will print up a usage screen with the total page count shown across the top
    Hope this helps you save on ink and paper.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to deactivate splash-screen offering "edit" / "organize"?

    I have just updated (on Mac OS X) to version 9. I don't want to use the Adobe Organizer, which seems to be new in this version. I never want to see it or use it, I just want to edit photographs.
    How can I jump over the splash screen straight into Photoshop Elements when I start the program?
    Thanks!
    John

    You made an alias to the wrong file. Go into applications and you'll see this:
    You want to drag the one without the version number or the little arrow on the lower left corner into the dock. That's the actual program. The one below it is an alias for the Welcome Screen.

  • How to make Splash Screen

    Hello,
    Attempting to create a splash screen. However, i'm having some difficulty. the screen seems to hang albeit there's some functionality in the code that requests the screen disposes itself. Also, the image for the screen is flickering albeit the Update() method has been overriden to call the overriden paint method. the splash screen is comprised of two classes: SplashWindow and Splash. the Splash class is invoked from the Main method of the application.
    Unfortunately, the SplashScreen object can't be used since the target device requires jre 1.4.2 and below.
    Here's the code from the two classes:
    import java.awt.Frame;
    import java.awt.Toolkit;
    import java.net.URL;
    public class Splash {
         public static void main(String[] args) {
              Frame splashFrame = null;
              URL imageURL = Splash.class.getResource("img.png");
              if (imageURL != null) {
                   splashFrame = SplashWindow.splash(
                             Toolkit.getDefaultToolkit().createImage(imageURL) );
              } else {
                   System.err.println("Splash image not found");
              try { // Change the class name to match your entry class
                   Class.forName("MainApp").getMethod("main", new Class[]
                             {String[].class}).invoke(null, new Object[] {args});
              } catch (Throwable e) {
                   e.printStackTrace();
                   System.err.flush();
                   System.exit(10);
              if (splashFrame != null) {
                   splashFrame.dispose();
    /*END OF CLASS*/
    import java.awt.Dimension;
    import java.awt.EventQueue;
    import java.awt.Frame;
    import java.awt.Graphics;
    import java.awt.Image;
    import java.awt.MediaTracker;
    import java.awt.Toolkit;
    import java.awt.Window;
    public class SplashWindow extends Window {
         private static final long serialVersionUID = 1L;
         private Image splashImage;
         private boolean paintCalled = false;
         public SplashWindow(Frame owner, Image splashImage) {
              super(owner);
              this.splashImage = splashImage;
              MediaTracker mt = new MediaTracker(this);
              mt.addImage(splashImage,0);
              try {
                   mt.waitForID(0);
              } catch(InterruptedException ie) {}
              int imgWidth = splashImage.getWidth(this);
              int imgHeight = splashImage.getHeight(this); 
              setSize(imgWidth, imgHeight);
              Dimension screenDim = Toolkit.getDefaultToolkit().getScreenSize();
              setLocation( (screenDim.width - imgWidth) / 2,
                        (screenDim.height - imgHeight) / 2 );
         @Override
         public void update(Graphics g) {
              g.setColor(getForeground());
              paint(g);
         @Override
         public void paint(Graphics g) {
              g.drawImage(splashImage, 0, 0, this);
              if (! paintCalled) {
                   paintCalled = true;
                   synchronized (this) { notifyAll(); }
         @SuppressWarnings("deprecation")
         public static Frame splash(Image splashImage) {
              Frame f = new Frame();
              SplashWindow w = new SplashWindow(f, splashImage);
              w.toFront();
              w.show();
              if (! EventQueue.isDispatchThread()) {
                   synchronized (w) {
                        while (! w.paintCalled) {
                             try {
                                  w.wait();
                             } catch (InterruptedException e) {}
              }  end of class
    // in the Main method of the application, the Splash object is instantiated and it's main method invoked
    Splash oSplash = new Splash();
    oSplash.main(args);any help is appreciated.

    i was able to find the solution to the problem. it appears that there are couple calls in the code to synchronize the thread the splash screen is running on. these multiple calls was causing the flicker. so, i removed the "synchronized" call in the paint method.
    the infinite loop was being caused by "forName" call for the class, so it was removed as well.

  • How to disable Splash Screen?

    Hi Experts,
    Whenever I am logging into CRM's WEB UI it throws a splash screen saying CRM is starting or Processing. Is there any way out by which I can disable this splash screen? This screen lasts only for few seconds.
    Thanks in advance!!
    Cheers,
    RJ

    Hi RJ,
    You can enhance the BSP Application CRM_UI_START. The part you need to change is on the page default.htm.
    The code that shows the box is:
    <%-- starting session --%>
    <div id="crmUIHostDialog" class="crmUIHostDialog">
      <thtmlb:box name="uif" >
        <span id="crmUIHostDialogText"><%=otr(CRM_BSP_UI_FRAME_APPL/SessionStart)%></span>
        <br/><img src="ScreenLoadingAniSmall.gif"/>
      </thtmlb:box>
    </div>
    Regards,
    Isaac Meléndez

  • How to view contents in Long Raw datatype column

    Hi,
    We have two node RAC database with 10.2.0.4.0 version.
    OS - IBM AIX.
    We have a table with a column with datatype "LONG RAW" in production. It stores image files.
    We need to send the images from few rows to third party vendor. Basically, they need to view the images.
    Earlier, I have exported to dump file using datapump and sent to vendor. but vendor is telling that they are not able to view the images. Can you please suggest best method to transfer the images (LONG RAW datatype) and the method to view them.

    We have a table with a column with datatype "LONG RAW" in production. It stores image files.
    We need to send the images from few rows to third party vendor. Basically, they need to view the images.
    Earlier, I have exported to dump file using datapump and sent to vendor. but vendor is telling that they are not able to view the images. Can you please suggest best method to transfer the images (LONG RAW datatype) and the method to view them.How is the vendor trying to use the extracted images? Data exported with datapump must be imported into another database with datapump. The same applies to the exp utility (must use imp to load into a database).
    If you're careful you should be able to write a binary file using utl_file.
    Regarding the long raw, is there any way you could convert to BLOBS? Longs and Long raws are notoriously hard to work with

  • How to view iPhone screen on mac display?

    ddo u have on mind the keynote of steve jobs? in which he used the iphone and everyone could see the screen of it, on a mac display?
    there's a way to do it?

    You can, however, view the Mac display on your iPhone. Or stream video and music from your Mac, too.
    Google +"Telekenesis" +"iphone" for the details.

  • How do i insert a splash screen or a loading screen and a application image for a phone app on Dream

    How do i insert a splash screen or a loading screen and a application image for a phone app on Dreamweaver 6, 5.5 had the mobile application setting that is seemingly no longer present? and i also heard you can use animanted backgrounds on the mobile application in dreamweaver 6 but figuring out how to set the splash screen and application image like it was in 5.5 would be nice. All i can get to pull up is the web application i developed i am trying to build into a phone app on google chrome, if i could officially designate it as a phone app where i can set each splash screen and app image to where it is recognized as a phone app that would be really nice.

    Duely noted, the server will still not connect, so i have left an inquery in the suggested forum.
    Date: Mon, 15 Oct 2012 07:37:34 -0600
    From: [email protected]
    To: [email protected]
    Subject: How do i insert a splash screen or a loading screen and a application image for a phone app on Dream
        Re: How do i insert a splash screen or a loading screen and a application image for a phone app on Dream
        created by David_Powers in Developing server-side applications in Dreamweaver - View the full discussion
    jmed0411 wrote: the phonegap program loads for quite some time and eventually reaches to the unfortunate conclusion that the server cannot be reached and to please try again. Any ideas on how that problem can be mended if the solution is in my hands?? I haven't used PhoneGap Build recently, but I have seen several reports about problems connecting to the server. One suggestion that I've heard is that there has been unexpectedly high demand on the server since the launch of Edge Tools and Services as part of the Creative Cloud last month. As far as I know, the only thing you can do is wait, and try again later. You could also try posting in the PhoneGap Build forum: http://community.phonegap.com/nitobi/products/nitobi_phonegap_build.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4774799#4774799
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4774799#4774799
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4774799#4774799. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Developing server-side applications in Dreamweaver by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to resolve a Lenovo PC that will not pass the Lenovo Splash screen with no access to Windows

    Here is my problem and here is the solution!!!
    My B540 Ideacentre would not pass the Lenovo splash screen. The only operational keys I had was F1 (BIOS) and F12 (BIOS options). F2 went to a light blue screen so no chance of even a one key recovery. Warrenty had expired four and a half months ago. I contacted Lenovo and after the guy told me to try F2 twice he said it was a HDD or other hardware failure and would cost around £200 maybe and also would take about two weeks. 
    AT THIS POINT YOU SHOULD NOT BE ANGRY FRUSTRATED OR PANIC. REMAIN CALM AND STOP AND THINK WHAT ACTUALLY WAS HAPPENING WHEN YOU LAST USED YOUR PC.
    For me I remembered Windows had auto downloaded 8.1 and was asking me to install. Also my keyboard had lost shift W T Y keys. This told me that it was not a hardware issue but a software issue and perhaps from this update. My HDD was not clicking or beeping and this PC has a 2TB Seagate Barracuda which has a good reputation. Luckly for me I also have a Seagate external expansion 2TB and a 500MB expansion which was the HDD from my old HP Touchsmart which I converted into an external hard drive by buying a HDD enclosure with cooling fan and all leads from eBay for £25 and this is where the solution is.
    If you can create an expansion drive so easily and access the HDD then why cant I do it with the HDD from my Ideacentre and of course you can. So first unplug your PC or laptop. Next remove the cover and unclip the HDD (which is easy with the B540. See user instructions). Next I removed my HP HDD from the enclosure and fitted my Ideacentre HDD in its place. Next you need a laptop or another PC. Switch it on and then connect your HDD to the laptop or PC via highspeed USB cable. My laptop is running Windows 7 Ultimate and of course has all the repair tools required. When the software has loaded you may get a box that will have two options. The first will ask you if you want to repair your files and the second to scan for bad sectors and to attempt repair recovery of sectors. Tick both boxes and click start. This is a long slow process but worth the wait. Nine hours later my HDD was ready. I connected my Seagate expansion to my laptop and moved all new files that I had not backed up. So at this point you should create a folder and move all your photos music videos documents etc to it. This can take upto three hours if you have never backed up before and are moving everything. Once completed I shut everything down and replaced the HDD into my Ideacentre. Make sure do not have any external devices connected such as expansions external drives headphones etc. Connect the power and switch on. The Ideacentre booted up and there was a pause at the splash screen then it went to a black screen and then by the miracle of logical thinking I was at my lock screen. I was never so glad to see the map of my home land "Ukraine". After jumping up and down with joy I then went in and all was as normal but to be sure I went into safemode and started a complete restore. This is the option where you completely format your HDD and restore as new. It takes a long time but it is the best option because you do not want this to happen again. When this has completed and you are in Windows do not wait a moment longer by playing with your photos or creating your desktop picture. Go to create a recovery drive (use a 32GB stick) and after that also make a copy to disc. Next go to command prompt (cmd) Admin and change a setting by typing bcdedit /set {default} bootmenupolicy legacy. This will now enable your F8 key to boot straight into safemode just incase you need to in the future. It will slow boot time a little but better to be able to get in to Windows than not at all for the sake of a few seconds. 
    Well I hope this helps someone out there and I know you may think its a lot to do but it is not. Ask a friend to borrow a laptop or PC and perhaps a HDD encloser. The rest is just time but when you see your lock screen you will not care trust me. 
    Cлава Україні!!! Героям слава!!!

    I thought this was the method I used before but I followed through it and it was a horrific fail.  "Operating system not found".  Can anyone help?
    http://superuser.com/questions/421402/how-to-create-a-bootable-usb-windows-os-us ing-mac-os-x
    Steps To Achieve Victory
    Download the ISO you want to use
    Open Terminal (in /Applications/Utilities)
    Convert .iso to .img using hdiutil:
    hdiutil convert -format UDRW -o /path/to/target.img /path/to/source.iso
    Rename if OS X gave it a .dmg ending:
    mv /path/to/target.img.dmg path/to/target.img
    Type diskutil to get a list of currently connected devices
    Insert USB drive you want to use
    Run diskutil again to see what your USB stick gets assigned eg - /dev/disk3
    Run diskutil unmountDisk /dev/diskN (where N is the number assigned to your USB stick, in previous example it would be 3)
    Run sudo dd if=/path/to/target.img of=/dev/diskN bs=1m (if you get an error, replace bs=1m with bs=1M
    Run diskutil eject /dev/diskN and remove your USB stick
    The USB stick will now be ready to use
    Also similarly described here: http://www.tomshardware.co.uk/answers/id-1733410/creating-microsoft-bootable-usb -mountain-lion.html#.

  • How to enter bios Setup (not the F1 stuff, the splash screen display settings)

    So I some how got into a seperate bios setting program by pressing ctrl S when some other bios utility was loading and changed the splash screen display (how long it shows the press enter stuff)
    but now I have no idea how to get back into that configruator.
    the Manual doesn't mention it, so question, how do I bloody do it?
    T430S 2542 btw

    Hello
    Every time when you switch the notebook ON you can see at the bottom left hand site the short instruction how to enter BIOS settings. In your case you must use F2 button. Please keep it down immediately after switching the notebook ON.
    Generally the Toshiba notebooks are delivered with two different BIOS versions (BIOS producer):
    - TOSHIBA BIOS: enter using ESC and F1 button
    - Phoenix BIOS: enter using F2 button.
    According the specification your unit has Phoenix BIOS.
    Bye

  • In IPhoto '08, Photos under Library, I'm no longer able to view a screen of thumbnails.   I'm only able to view a single photo at one time.  This was not true in the past.

    In IPhoto '08, in Library/Photos, I'm no longer able to view a screen of thumbnails.   I'm only able to view a single photo at one time.  This was not true in the past.

    Note the slider lower right of the iPhoto Window. Drag it left.
    Regards
    TD

  • Bridge - How to view image in full screen resolution

    In Bridge - How to view an image in full screen resolution and not as a Preview (Space bar), like in Lightroom (F), Photoshop or ViewNX 2 ?

    The size of the Bridge Preview window will always be the absolute limit of the image display in Bridge.  Maybe I am not following you.  Sorry

  • I have a brochure I need to print. When viewed on screen it is pixelated, however when I change to presentation view it is fine. I need to print on presentation view. How do I do this?

    I have a brochure I need to print. When viewed on screen it is pixelated, however when I change to presentation view it is fine. I need to print on presentation view. How do I do this?

    Sounds to me more like you have the Display Performance set on Typical rather than High Quality Display. Unless there is a problem with a missing or out-of-date link, the display in ID has nothing to do with output quality -- all of the image data is used for output.

  • 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.

Maybe you are looking for