autoitfreaky Posted June 14, 2010 Posted June 14, 2010 Hi everybody , I have a question , When you download the demo (http://www.autoitscript.com/forum/index.php?app=downloads&showfile=100), and open the exe file, you will see (a few seconds) a Autoit picture... How can i make this? I want for my browser a picture to! Can someone help me ? Thanks! Kind Regards, Thommy
somdcomputerguy Posted June 14, 2010 Posted June 14, 2010 Do a screen capture, here's one I just did - - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
niubbone Posted June 14, 2010 Posted June 14, 2010 SplashImageOn is what you are looking for. Look at it in help file.
autoitfreaky Posted June 14, 2010 Author Posted June 14, 2010 On 6/14/2010 at 5:43 PM, 'niubbone said: SplashImageOn is what you are looking for. Look at it in help file.Thanks "niubbone"!It works well!Kind regards,ThommyP.S. You also thanks "somcoputerguy"
somdcomputerguy Posted June 14, 2010 Posted June 14, 2010 (edited) On 6/14/2010 at 5:53 PM, 'autoitfreaky said: It works, but he opens the picture with Microsoft Office Picture Manager and then he opens my Browser...Can you give me a exemple script to please?Kind Regards,ThommyHey now I'd love to help you out, but it seems a language barrier has come up between us. I guess I have no idea what you're talking about.Add: On 6/14/2010 at 6:02 PM, 'autoitfreaky said: Thanks "niubbone"!It works well!Kind regards,ThommyP.S. You also thanks "somcoputerguy"I see you've now got this issue resolved. Right on. Edited June 14, 2010 by somdcomputerguy - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
matthieuvb Posted June 15, 2010 Posted June 15, 2010 Tray this: #Include <WindowsConstants.au3> Func Picture($Title, $w, $h, $PicFile, $Time) GUICreate($Title, $w, $h, -1, -1, $WS_POPUP) GUICtrlCreatePic($PicFile, 0, 0, $w, $h) GUISetState() Sleep($Time) GUIDelete() EndFunc Example: Picture("Picture example", 650, 650, "C:\Your pic.jpg", 2000) ;2000 ms = 2 sec [font=Helvetica, Arial, sans-serif][background=rgb(252, 252, 250)][/background][/font]
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