Question #265794 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/265794

    Status: Open => Answered

RaiMan proposed the following answer:
I would insert a wait, to not make the cpu too busy:

BeforeABBYY = App.getClipboard()

while BeforeABBYY == AfterABBYY:
    AfterABBYY = App.getClipboard()
    wait(1)

BTW: per convention variables in Python should start with a lowercase
letter, names starting with uppercase should be reserved for lass names
and constants (usually all uppercase)

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to