Ryan Beasse Posted December 20, 2007 Posted December 20, 2007 Hey there, I was wondering about how I would go on making a program that placed a little red dot, in the middle of my screen. With a 1680 x 1050 resolution. Any help is great, it would also need an always on top attribute.
Ryan Beasse Posted December 20, 2007 Author Posted December 20, 2007 (edited) Not that big, 5-7 pixels maybe? Edited December 20, 2007 by Ryan Beasse
therks Posted December 20, 2007 Posted December 20, 2007 (edited) #NoTrayIcon #include <WindowsConstants.au3> GUICreate('', 5, 5, default, default, $WS_POPUP, BitOR($WS_EX_TOOLWINDOW, $WS_EX_TOPMOST)) GUISetBkColor(0xff0000) GUISetState() While 1 Sleep(1000) WEnd *Edit: There, 5 pixels. Edited December 21, 2007 by Saunders My AutoIt Stuff | My Github
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