How can I send Ctrl + "`" in advanced scripting?

53 Views Asked by At

I am trying to write the equivalent of the following in advanced scripting:

enter image description here

I tried:

Sub Main
    SendKeys "^`"
    Wait(1)
    SendKeys "2"
End Sub

But SendKeys "^"` doesn't seem to have the same effect as the first line of the step-by-step voice command, which I don't understand.

The goal is to retrieve the second element in Ditto clipboard history.

enter image description here

0

There are 0 best solutions below