Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
simulate keywait function in autohotkey
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
ceason lam  
View profile  
 More options Jun 20 2012, 11:07 am
From: ceason lam <thecea...@gmail.com>
Date: Wed, 20 Jun 2012 08:07:35 -0700 (PDT)
Local: Wed, Jun 20 2012 11:07 am
Subject: simulate keywait function in autohotkey
i want to simulate the keywait function in autohotkey in linux
how can i do it?
if it is the missing functioin
would you consider it as a request.

thanks

link of keywait info : http://www.autohotkey.com/docs/commands/KeyWait.htm


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
thecea...@gmail.com  
View profile  
 More options Jun 21 2012, 1:17 am
From: thecea...@gmail.com
Date: Wed, 20 Jun 2012 22:17:56 -0700 (PDT)
Local: Thurs, Jun 21 2012 1:17 am
Subject: Re: simulate keywait function in autohotkey

more info

the following  is what i exactly want to do

xdotool mousemove x y click

!! then open a dialog of color picker then i choose a color

xdotool key KP_Enter
-------------------------------------------------------
in ahk

i can  do with a single shortcut ' s '
i hold s  dialog popup
i release s dialop close

---------------------------------
s::
click x y
keywait s
send {enter}
return


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jordan Sissel  
View profile  
 More options Jun 21 2012, 1:20 am
From: Jordan Sissel <j...@semicomplete.com>
Date: Wed, 20 Jun 2012 22:20:34 -0700
Local: Thurs, Jun 21 2012 1:20 am
Subject: Re: [xdotool-users] Re: simulate keywait function in autohotkey

On Wed, Jun 20, 2012 at 10:17 PM, <thecea...@gmail.com> wrote:

> more info

> the following  is what i exactly want to do

> xdotool mousemove x y click

You can probably 'hack' around this by using 'xdotool selectwindow' and
just throw away the result. The 'selectwindow' will block until you click
in any window, so maybe this:

xdotool mousemove x y selectwindow click ...

'selectwindow' only waits for a click. If you need waiting for a keystroke,
I can add that to the TODO list :)

-Jordan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
thecea...@gmail.com  
View profile  
 More options Jun 22 2012, 12:03 pm
From: thecea...@gmail.com
Date: Fri, 22 Jun 2012 09:03:55 -0700 (PDT)
Local: Fri, Jun 22 2012 12:03 pm
Subject: Re: [xdotool-users] Re: simulate keywait function in autohotkey

thank , jardon

i have another question

i also try the simulate "alt+click"

i did a search
it seem
xdotool keydown alt click 1 keyup alt
is the correct answer
but it don't not work

i only get this work

xdotool keydown alt
sleep 1
xdotool click 1
xdotool keyup alt

the problem is keydown is not working
i try to use delay optioin but once i add the whole script not work anymore

regard


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »