Splash screen in Developer Help
|
|
Code:
mob/Loginscreen proc Mob_DisplayLogoScreen() var/mob/Loginscreen/M = usr M << browse_rsc('web\\SplashScreen.htm',"SplashScreen.htm"); M << browse_rsc('web\\SplashScreen.png',"SplashScreen.png"); M << browse({"<meta http-equiv="Refresh" content="0; url=SplashScreen.htm">"},"window=SplashScreenBrowser"); winset(M,"SplashScreen","is-maximized=true;titlebar=false") sleep(65) winshow(M, "SplashScreen", "show=0")
|
Problem description:
What I try to do is show the SplashScreenBrowser on my default window. Inside the default window, I want it to be shown on the map called map1. How should I go about this?
|
Use the Skin Reference and Lummox JR's Skin tutorial for more information on Childs and Panes.