Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed yesterday.
Improve this question
I don't know how to start I want to write a code that changes icon size on desktop without mouse click.
I need some help on how to get started and what it takes to gain control of the system.
take the icon and resize it with openCV and use os.system to change the icons
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 days ago.
Improve this question
I have created the Volume GUI, but I can't adjust Windows volume using the GUI. Can anyone help me?
Can adjust the volume using the GUI.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed last year.
Improve this question
how can I get the size and position of an active window in mac with python?
Disclaimer: I have no mac to test on.
It seems you can do this with applescript:
tell application "Finder" to get position of front window
and to set:
tell application "Finder" to set {x, y} to position of front window
See the command reference for more.
There are also libraries, e.g. https://github.com/rdhyee/py-applescript
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have removed the title of the main window.
Created a button that should hide the window, but not close it. How can I implement a similar function for her?
I guess you want something to minimize application
like this button :
To minimize your application you should call showMinimized(); function.
look at this Qt Documentation link :
https://doc.qt.io/qt-5/qwidget.html#showMinimized
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I really want to draw onto an application window.
For example, I want it to display 'Hello World' on the discord window at the top left. Is this possible?
In order to do that, you will need to download themes from internet for discord, maybe with BetterDiscord or something, then in the css file you will need some simple css knowledge about the coordinates/placement, and the text you want to display.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I want to create a hyperlink in my wx widget which opens linked folder on clicking. Please help me how to build that.
Thanks.
os.system("start C:")
will launch a file window (on windows at least) ... it has nothing to do with wx
unless you are talking about opening a FilePickerDialog?
I have also been informed that
os.system("explorer C:")
would also work