Autoit and Delphi

Hello could someone please translate this AutoIt code into Delphi code please.

$var= MouseClick ("left", 835,660, 1, 5) and send ("{CTRLDOWN}c{CTRLUP}")
Clipput= $var

Comments

  • : Hello could someone please translate this AutoIt code into Delphi
    : code please.
    :
    : $var= MouseClick ("left", 835,660, 1, 5) and send
    : ("{CTRLDOWN}c{CTRLUP}")
    : Clipput= $var
    :
    This is it:
    [code]
    var
    Clipput: boolean;
    begin
    Clipput := MouseClick('left', 835,660, 1, 5) and Send('{CTRLDOWN}c{CTRLUP}');
    [/code]
    Because I don't know what the return values of the function are, Clipput might be the wrong type.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion