bugzilla-mail-...@yandex.ru wrote:

> How can I get something from tkinter gui to another program ?
> tkinter on python 3.2 on kde4

How about 

import tkinter
root = tkinter.Tk()

root.clipboard_clear()
root.clipboard_append("whatever")


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to