Workflow Soluiton

 View Only
  • 1.  Process Start - Splash Screen

    Posted Aug 12, 2010 10:52 AM
    We have all experienced that long wait when you start a process and its processing components before it gets to a FormBuilder and you actullay see something in the browser windoe.  My users are complaining a lot about it so I am trying to find a way to display a 'splash screen' that at least shows them a simple message that the process is loading.

    I have not found any component to do that.  I have been trying to see if I can auto submit a formbuilder and then leverage the 'processing' features, no joy yet. 

    Has anyone found a working method to accomplish some sort of splach screen effect?


  • 2.  RE: Process Start - Splash Screen

    Posted Aug 17, 2010 07:36 PM

    so here's a very absurd method of accomplishing what you're asking for that i came up with just for you friend, and that i'll probably use in mine as well...

    i placed another form builder page in front of all the process work, immediately after the start button.

    on that page, i placed a textbox and an end component.   the end component i gave a control id of "btnEnter".

    the textbox i gave a custom event of attributeskeyvaluepair and set "onfocus" with the event handler of:

    onfocus=btnEnter.click();

    i set the textbox tab order value to 0 (zero) and the end component tab order value to 1.

    i set the component size of both the textbox component and the end component to 1,1.

    i then turned on the Processing message.

    works great for me!!  let me know if you enjoy my absurdly roundabout way of creating a fun processing page in front of the real work!

    to that end, you could put whatever "splash" image you want on the page, so long as the textbox with the onfocus handler is set to tab order zero so's it clicks the "go" button for you when the page loads.



  • 3.  RE: Process Start - Splash Screen
    Best Answer

    Posted Aug 17, 2010 08:41 PM
      |   view attached
    You can use the 'Auto Exit page on Refresh' form component which has a path just like a button, but you don't have to have any buttons on the form or anything at all.

    Illustrated in the attached package.

    Attachment(s)

    zip
    WebFormsProject1.package.zip   936 KB 1 version


  • 4.  RE: Process Start - Splash Screen

    Posted Aug 18, 2010 06:55 PM
    Can you attach this form in a sample?  It does not make sense and I cannot make it work.


  • 5.  RE: Process Start - Splash Screen

    Posted Aug 18, 2010 09:13 PM
      |   view attached
    sure friend, see attached, but give credit where it's due my pops always said


    Attachment(s)

    zip
    testflow.zip   1.86 MB 1 version


  • 6.  RE: Process Start - Splash Screen

    Posted Aug 19, 2010 01:32 PM
    Absolutely willing to give credit where due - just wanted to see the flow - the instructions first given I could not follow.   This makes more sense now Thanks for the update.


  • 7.  RE: Process Start - Splash Screen

    Posted Aug 19, 2010 02:35 PM
    you betcha!  i hope it helps you save the day.


  • 8.  RE: Process Start - Splash Screen

    Posted Aug 25, 2010 10:22 PM
    hey don i sure could use another 50 points to go towards my ipo-- oh, wait.  nevermind.  maybe i can buy one if i save up enough $15 gift certificates!


  • 9.  RE: Process Start - Splash Screen

    Posted Aug 26, 2010 08:43 AM

    I've tried these and various other solutions.  These solutions work, once the process is loaded into memory.  I still have the delay while the process is loaded into memory.  I think to overcome the delay while the process loads into memory it will take a change to the product.

    For now, I will get along with these ideas.  Thanks everyone.