Hello,
here is an example for using the clipboard of Tkinter :
====================
from Tkinter import *
root = Tk()
root.clipboard_clear()
root.clipboard_append('A text in the clipboard...')
root.withdraw()
====================

I would like to do the same with PyQt. Is it possible ?

Christophe.

PS : if someone knows a Python script which is an universal ClipBoard (ie which works on Unix and Windows), it would be better. The purpose is just to send text.

_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to