[Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-02 Thread eduardobedoya
New question #267700 on Sikuli: https://answers.launchpad.net/sikuli/+question/267700 Currently I have a script divided in many functions that use the same string global variable that always changes through the script: def functionA(): if error occur: App.setClipboard("functionA_ERRO

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-02 Thread Eugene S
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 Status: Open => Answered Eugene S proposed the following answer: Hi, I would consider a different approach to your design. Clipboard is not designed to maintain lists or lines of data. If you want to k

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-03 Thread eduardobedoya
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 Status: Answered => Open eduardobedoya is still having a problem: Second chance would be write the log in a PostgreSQL database, is where the main macrorecoder records all the logs, I used that macrorec

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-03 Thread eduardobedoya
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 eduardobedoya posted a new comment: Second chance would be write the log in a PostgreSQL database, is where the main macrorecoder records all the logs, I used that macrorecorder to call sikuli scripts, and

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-03 Thread eduardobedoya
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 eduardobedoya gave more information on the question: Second chance would be write the log in a PostgreSQL database, is where the main macrorecoder records all the logs, I used that macrorecorder to call sik

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-03 Thread eduardobedoya
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 eduardobedoya gave more information on the question: Second chance would be write the log in a PostgreSQL database, is where the main macrorecoder records all the logs, I used that macrorecorder to call sik

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-03 Thread eduardobedoya
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 eduardobedoya gave more information on the question: Second chance would be write the log in a PostgreSQL database, is where the main macrorecoder records all the logs, I used that macrorecorder to call sik

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-03 Thread RaiMan
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 Status: Open => Answered RaiMan proposed the following answer: to make a clipboard append try this: content = App.getClipboard() content = content + newContent App.setClipboard(content) -- You receive

Re: [Sikuli-driver] [Question #267700]: Is there a way to append strings to clipboard?

2015-06-06 Thread eduardobedoya
Question #267700 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/267700 Status: Answered => Solved eduardobedoya confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because you are a member of Sikuli Dri