10-29-2012 01:18 PM
Thanks i'll update when i figure debug out with the results
11-20-2012 12:48 AM - edited 11-20-2012 01:16 AM
the debugger completely lost me
however I did figure out what was wrong
Q_INVOKABLE void myButtonClicked(QString text);
instead of QString I had to use QByteArray
Q_INVOKABLE void myButtonClicked(QByteArray text);
void App::myButtonClicked(QByteArray text)
{
Clipboard clipboard;
clipboard.clear();
clipboard.insert("text/plain", text);
}Thanks for the help!