Skip to content Skip to sidebar Skip to footer

Troubles With Clipboard In Python

I'm learning Python right now and I want to write some script that will helps me with work. The idea is: while True: read some string from clipboard, modify it then return it into

Solution 1:

ralu, thanks. I've got it at the same time I've got your answer. I should've use win32clipboard.SetClipboardText(data) instead of win32clipboard.SetClipboardData(win32clipboard.CF_TEXT, data).


Post a Comment for "Troubles With Clipboard In Python"