Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/winMove #5

Closed
spyoungtech opened this issue Dec 12, 2018 · 1 comment
Closed

feature/winMove #5

spyoungtech opened this issue Dec 12, 2018 · 1 comment
Labels
enhancement New feature or request

Comments

@spyoungtech
Copy link
Owner

Implement winmove functionality

Ref: https://www.autohotkey.com/docs/commands/WinMove.htm

Probably the interface for this would be something like how mouse moves, except you'd use a particular Window object

win = ahk.active_window
win.move(200, 200)  # moves upper-left-hand corner to (200, 200)

This also includes altering the width/height of a window. This could be additional arguments for a move method. Additionally property setters for width and height should also be implemented

win.move(200, 200, width=500, height=700)  #  move and additionally adjust width/height 
win.width = 500  # sets window width to 500px
win.height = 700  # sets window height to 700px
@spyoungtech spyoungtech added the enhancement New feature or request label Dec 12, 2018
@spyoungtech
Copy link
Owner Author

Resolved in number #23

spyoungtech added a commit that referenced this issue Dec 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant