Kodi Community Forum

Full Version: how copy clipboard
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
li.addContextMenuItems([('copy title', something )])

How copy clipboard
Download and use some module like pyperclip:
Code:
import paperclip
pyperclip.copy(text)
pyperclip.paste()