Guest oxygen Posted April 19, 2004 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. Share this post Link to post Share on other sites
Guest oxygen Posted April 19, 2004 This thread is close? Share this post Link to post Share on other sites
Jos 2,165 Posted April 19, 2004 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 intervalSleep(????) ; in msecsetc.... 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. Share this post Link to post Share on other sites
Nutster 3 Posted April 21, 2004 What about using a large key delay? Opt("SendKeyDelay",1000) ; Wait 1 second between keys Send("!F") Send("!C") Send("!T") David NuttallNuttall Computer ConsultingAn Aquarius born during the Age of AquariusAutoIt allows me to re-invent the wheel so much faster.I'm off to write a wizard, a wonderful wizard of odd... Share this post Link to post Share on other sites