Damein 19 Posted December 28, 2010 Hey, I was wondering if there was a way to splash an image that has no border or title so its just the image as it is. Thanks Most recent sig. I madeQuick Launcher W/ Profiles Topic Movie Database Topic & Website | LiveStreamer Pro Website | YouTube Stand-Alone Playlist Manager: Topic | Weather Desktop Widget: Topic | Flash Memory Game: Topic | Volume Control With Mouse / iTunes Hotkeys: Topic | Weather program: Topic | Paws & Tales radio drama podcast mini-player: Topic | Quick Math Calculations: Topic Share this post Link to post Share on other sites
JoHanatCent 13 Posted December 29, 2010 (edited) A Gui with: GUICtrlCreatePic Else: $destination = "..\GUI\mslogo.jpg" SplashImageOn("Thin Bordered Titleless Window", $destination, 250, 50, 17, 17, 17) Sleep(3000) SplashOff() Edited December 30, 2010 by JoHanatCent Share this post Link to post Share on other sites
Malkey 231 Posted December 29, 2010 This is almost border-less, having a one pixel width (thin) border. $destination = RegRead("HKLM\SOFTWARE\AutoIt v3\AutoIt", "InstallDir") & "\Examples\GUI\logo4.gif" SplashImageOn("Splash Screen", $destination, 169, 68, -1, -1, 1) Sleep(3000) SplashOff() Share this post Link to post Share on other sites