home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / SplashImageOn.au3 < prev    next >
Encoding:
Text File  |  2004-09-22  |  190 b   |  7 lines

  1. $destination = @TempDir & "\mySplash.bmp"
  2. FileInstall("C:\foo.bmp", $destination)  ;source must be literal string
  3.  
  4. SplashImageOn("Splash Screen", $destination)
  5. Sleep(3000)
  6. SplashOff()
  7.