erfg12 / AOL_4.0_Emu

Emulating AOL 4.0
https://aolemu.com
103 stars 8 forks source link

Splash Image #8

Open erfg12 opened 5 years ago

erfg12 commented 5 years ago

There's supposed to be a splash image upon startup.

larseka commented 1 year ago

AOLSpl

This is my own splash screen if a splash screen is still needed. However, here is a batch file I made to open your AOL emulator with the splash screen in the beginning:

cd c:\Program Files\AOL C# 4.0 ::Location to start. start AOLSpl.png :: Shows the splash. timeout /T 5 :: Shows splash for 5 seconds and closes. taskkill/im dllhost.exe :: Ends the program that shows the splash screen. start aol.exe & exit :: Opens up the AOL emulator and command prompt exits.

Once this is typed in notepad, saved as a batch file and opened the splash screen will show before the program opens. Hope this helps.

larseka commented 1 year ago

Update to the batch file:

cd c:\Program Files\AOL C# 4.0 ::Location to start. start AOLSpl.png :: Shows the splash. timeout /T 5 :: Shows splash for 5 seconds and closes. taskkill/im dllhost.exe :: Ends the program that shows the splash screen This will only work with Windows 7. taskkill /f /im Microsoft.Photos.exe /t :: This is how the splash screen will disappear in Windows 10. start aol.exe & exit :: Opens up the AOL emulator and command prompt exits.