Saltar al contenido principal

Beas: Can I emulate a keystroke?

Respondida

Comentarios

1 comentario

  • Comentario oficial
    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

Iniciar sesión para dejar un comentario.