Jump to content

Display no GUI


YoseMite
 Share

Recommended Posts

Hi,

I have a simple script that show a JPEG picture.

Now I want the title bar not see, only the JPG picture. B)

How can I do this with AutoITscript?

Thanks,

YoseMite

Straight from the help file.

$destination = @Systemdir & "\oobe\images\mslogo.jpg"

SplashImageOn("", $destination,250,50,100,100,1)
Sleep(3000)
SplashOff()


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

If you use GuiCreate(.....) then there are styles that let you get rid of the titlebar:

#include <GuiConstants.au3>
GuiCreate("Ttile,",400, 300, -1,-1, BitOr($WS_POPUP,$WS_DLGFRAME))
GuiSetState()
sleep(2000)

Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...