Remove white flickering with browse. in Developer Help
|
|
Code:
proc SPLASHSCREEN() 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") sleep(65) M << browse_rsc('web\\SplashScreen2.htm',"SplashScreen2.htm") M << browse_rsc('web\\SplashScreen2.png',"SplashScreen2.png") M << browse({"<meta http-equiv="Refresh" content="0; url=SplashScreen2.htm">"},"window=SplashScreenBrowser")
|
Problem description:
Between the first display of a picture and the second picture, it always gives a white flickering, how can I remove that so my splashscreen seems to be smoother?
Thanks in advance.
|