Как вставить значение из буфера?

Asked by Andrey

Можно ли в тело функции вставлять значение из буфера для дальнейших расчетов? Какая команда? Если можно, небольшой пример.

Question information

Language:
Russian Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
Eugene S
Solved:
Last query:
Last reply:
Revision history for this message
Best Eugene S (shragovich) said :
#1

Clipboard data is accessible through:
App.getClipboard()

For example:
text = App.getClipboard()

Revision history for this message
Andrey (goofy82) said :
#2

Спасибо... Мне помогло Env.getClipboard()...чем отличаются не понял

Revision history for this message
Andrey (goofy82) said :
#3

Thanks Eugene S, that solved my question.

Revision history for this message
Eugene S (shragovich) said :
#4

Actually Env.getClipboard() was the one I wanted to mention in the first place :)
Have no idea how did I get to App and not sure either what is the difference between these.
Sorry for the confusion.