|
|||
|
Hi,
How can I make a Splash Screen before my .EXE file loaded? I mean that Splash Sceen must show before the .exe file loaded. Could it be possible? Please explain in Detail because I know very little Ffish Script. I am using SWFKit 2.2. |
|
|||
|
I don't know how to make the splash screen appear without the exe shown. For that you should wait the swfkit team to respond
But when i make a splash screen I usualy do this: Code:
Splash = new SplashWnd(550,400)
Splash.loadSWF("c://splash.swf")
// the following line centers the splash window, otherwise it's created off-screen
Splash.window.center();
Splash.timeout = 8888
Splash.onTimeout = function ()
{
***trace("timout")
}
That was because I didn't use the window.center. The splash window is a window-object, so all the window -ffish scripts have an effect on the splash-window. So you could even let the splash window fly in from the corners with Code:
Splash.window.fly(0, 1, true, 0); |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|