grindy Posted June 12, 2012 Posted June 12, 2012 Hi all, This is my first post here, as I've just discovered AutoIT. I have some scripting/programming experience, but it is very basic. What I want to do (and I was referred to AutoIT on another forum when I asked this question) is fairly basic. I want to be able to control the size and screen position of a Windows application every time it opens. Could someone point me in the right direction or better yet a tutorial that shows me how to do this? All help appreciated, bob
Kidney Posted June 12, 2012 Posted June 12, 2012 you should look at WinExists and WinMove in the help file
water Posted June 12, 2012 Posted June 12, 2012 AutoIt tutorials can be found here. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
grindy Posted June 12, 2012 Author Posted June 12, 2012 I have now looked at WinExists and WinMove and obviously happy that AutoIT will be able to do what I want. Could someone post an example of a script that will check for the existance of a window and then re-size and re-position it? Thx, bob
Kidney Posted June 12, 2012 Posted June 12, 2012 If WinExists("Untitled - Notepad") = 1 Then WinMove("Untitled - Notepad", "", 0, 0, 500, 500)
grindy Posted June 13, 2012 Author Posted June 13, 2012 If WinExists("Untitled - Notepad") = 1 Then WinMove("Untitled - Notepad", "", 0, 0, 500, 500) Outstanding... TYVM... Pretty straightforward, thx bob
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