|
Is there a standard splash screen size or set of guidelines for the size of a splash screen? This is for a music-playing application for XP and Vista.
Started by Duncan Edwards on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I just use 550X400 for my splash....
I use my splash screen as my login window.
A splash screen size that doesn't get, if it is necessary at all.
splash screens, except for unusually long-loading applications.
|
|
I have a simple application, it starts, loads xml feed from the net, you can browse a list of news and then read details for a chosen news item. What I would like to do is have a splash screen, meaning as soon as you click application, it should display...
Started by pambuk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Android suggests you take advantage of using a splash screen when performing lengthy calculations:
"If your application has a time-consuming initial setup phase, consider showing a splash screen for your splash ....
|
|
Dear all,
I have an application.
First I display a splash screen, a form, and this splash would call another form.
Problem: When the splash form is displayed, if I then open another application on the top of the splash, and then minimize this newly opened...
Started by Eng.Basma on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Start a new thread, and on that thread create your splash screen and....
You need to display the splash screen in a different thread - currently your new form loading code is blocking the splash screen's UI thread.
|
Ask your Facebook Friends
|
Is there a way to hide the status bar when showing splash screen in iphone? and show again in application
Started by Rahul Vyas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Once your application has loaded, you can re-show the status bar using UIApplication's setStatusBarHidden... .
I'm pretty sure that if your Info.plist file has the "Status bar is initially hidden" value set to YES, then it won't show while your application is loading .
|
|
I would like to show the user a splash screen (a picture) while my Cocoa-based application launches. How would this be possible?
Started by jin on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If it is....
If you decide that you want to show a splash screen during this time, so if you want to update the splash screen (with status, a progress bar startup is necessary.
Application), forcing it to be loaded at startup.
|
|
I have a splash screen set using the Application Framework. In my main form, I check for some conditions in Load() event of the MainForm and display a MsgBox if some of them fails.
But the problem is, the MsgBox comes below the Splash Screen. Is there...
Started by Xinxua on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try this link: http://www.codeproject.com/KB.
Show the MsgBox in the splash form's Shown event.
|
|
Hi,
I want to know how to show a splash screen (like a gif or jpeg file) on the user screen during my script execution.
Thank you for your help.
Started by panidarapu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'm going to suggest using JQuery because that's what I've chosen as my JS library the splash display is enabled before coninuing....
I don't know of an existing script, but I can tell you how you would go about implementing a splash screen.
|
|
Hi, In my TabBar based iPhone application, i would like to display a full screen welcome page (with some logs) before the actual application loads, How can i load a UIView from xib file as the welcome screen and then from there i can load my TabBar based...
Started by shinto Joseph on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Tab-bar apps, I display a splash screen like so:
In my app delegate object, I start displaying:controller animated:YES]; [controller release];
I'll usually put a "dismiss" button on the splash screen-from-the-bottom animation....
|
|
Has anyone created a custom Silverlight Splash screen to replace the blue balls circular progress?
Does anyone have a sample or the best way to do this?
Started by Robert Kozak on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look at this how to:-
How to: Define a Simple Silverlight Splash Screen
This looks quite.
|
|
How to implement a splash-screen using an image with alpha channels transparency/opacity in WinForms?
Started by Shurup on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is it something you can draw using code? If so you could set the forms draw region to a shape, like this:
yourForm.Region = new Region(someShape);
The shape can for example be a polygon with the same shape ... .
Depends on what kind of shape your image is.
|