Skip to main content

Beas: Can I emulate a keystroke?

Answered

Comments

1 comment

  • Official comment
    Martin Heigl

    You can do it with a small customizing script
    (in this window: Crtl + N + U

     

    In debug protocol you can see the commands

    The button have 3 objects

    calc_b, calc_p and calc_t
    you must create a script for every object

    Example

    // all 3 objects call function calculate
    windowevent click calc_b
    calculate()
    end event
    windowevent click calc_p
    calculate()
    end event
    windowevent click calc_t
    calculate()
    end event


    // global function calculate execute the calculation via post (behind the first calculation)
    global function calculate
    post=manualcalculate
    post=manualcalculate
    post=manualcalculate
    post=manualcalculate
    end event

Please sign in to leave a comment.