YoseMite Posted November 18, 2005 Posted November 18, 2005 Hi, I have a simple script that show a JPEG picture. Now I want the title bar not see, only the JPG picture. How can I do this with AutoITscript? Thanks, YoseMite
BigDod Posted November 18, 2005 Posted November 18, 2005 Hi, I have a simple script that show a JPEG picture. Now I want the title bar not see, only the JPG picture. How can I do this with AutoITscript? Thanks, YoseMiteStraight 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
CyberSlug Posted November 18, 2005 Posted November 18, 2005 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!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now