home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / SplashImageOn.au3 < prev    next >
Text File  |  2004-09-22  |  190b  |  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.