Jump to content

Sequence Of Keys


Guest oxygen
 Share

Recommended Posts

Guest oxygen

First of all, to pardon my English:

I want to make script to send a sequence of keys, this sequence has a time interval between a pulsation and another one.

The sequence is ALT+F+C+T, ALT (pressed) time interval + F (pressed) time interval + C (pressed) but time interval + T

Thanks for everything. A greeting.

---

Quiero hacer un script para enviar una secuencia de teclas, esta secuencia tiene un intervalo de tiempo entre una pulsacion y otra.

La secuencia es ALT+F+C+T, ALT (presionada) intervalo de tiempo + F (presionada) intervalo de tiempo + C (presionada) mas intervalo de tiempo + T

Gracias por todo. Un saludo.

Link to comment
Share on other sites

  • Developers

no.. you should post these kind of support requests in the "v3 Support" forum, this one is intended for :

A forum for authors of cool scripts and UDFs to share their wares, and to share awareness of external apps that can be integrated with AutoIt v3.

Anyway... did you check the helpfile for the Send command to see what it can do ?

;The sequence is ALT+F+C+T,

Send("!F!C!T")

;ALT (pressed)

Send("{ALTDOWN}")

;time interval

Sleep(????) ; in msecs

etc....

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

What about using a large key delay?

Opt("SendKeyDelay",1000) ; Wait 1 second between keys

Send("!F")
Send("!C")
Send("!T")

David Nuttall
Nuttall Computer Consulting

An Aquarius born during the Age of Aquarius

AutoIt allows me to re-invent the wheel so much faster.

I'm off to write a wizard, a wonderful wizard of odd...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...