Search found 368 matches
- Yesterday, 12:46
- Forum: Ask For Help
- Topic: keystroke to the 'ok' button Topic is solved
- Replies: 4
- Views: 122
Re: keystroke to the 'ok' button Topic is solved
I solved it, thanks!
- Yesterday, 10:04
- Forum: Ask For Help
- Topic: keystroke to the 'ok' button Topic is solved
- Replies: 4
- Views: 122
Re: keystroke to the 'ok' button Topic is solved
indeed, I know that
my question is if there is another way to fulfill my goal without using the Click command
my question is if there is another way to fulfill my goal without using the Click command
- Yesterday, 07:10
- Forum: Ask For Help
- Topic: keystroke to the 'ok' button Topic is solved
- Replies: 4
- Views: 122
keystroke to the 'ok' button Topic is solved
at a dialog how can I create a shortcut to the "OK" button instead of doing this?
Code: Select all
+Enter:: Click 3800,2050
- 21 Jan 2021, 22:24
- Forum: Ask For Help
- Topic: refocusing my mouse cursor to the keyboard cursor Topic is solved
- Replies: 4
- Views: 104
Re: refocusing my mouse cursor to the keyboard cursor Topic is solved
thanks mike! if someone is interested in the answer: ^!k:: ;smoothly scroll down WinGetActiveTitle, WordOver MouseGetPos,,, uid WinGetTitle, mouseOver, ahk_id %uid% If (WordOver = mouseOver) Send {WheelDown} else MouseMove A_CaretX,A_CaretY Send {WheelDown} Return ^!i:: ;smoothly scroll up WinGetAct...
- 19 Jan 2021, 07:30
- Forum: Ask For Help
- Topic: minimize to system tray Topic is solved
- Replies: 1
- Views: 48
minimize to system tray Topic is solved
how can I minimize an application to system tray?
- 16 Jan 2021, 18:36
- Forum: Ask For Help
- Topic: running a script last at the startup Topic is solved
- Replies: 2
- Views: 72
Re: running a script last at the startup Topic is solved
thanks that was the solution!
- 15 Jan 2021, 16:15
- Forum: Ask For Help
- Topic: closing "find dialog" at Scite4Autohotkey Topic is solved
- Replies: 1
- Views: 46
closing "find dialog" at Scite4Autohotkey Topic is solved
in the past I was able to use this script to close Find at Scite4Autohotkey , but not anymore #If FindIsOpen() !Space::controlsend,,{esc},ahk_class SciTEWindow #If FindIsOpen() { CoordMode,mouse,screen SetMouseDelay,-1 WinGetPos,X,Y,W,H,ahk_class SciTEWindow MouseGetPos,Mx,My XSpot:=X+W-16,YSpot:=Y+...
- 15 Jan 2021, 11:50
- Forum: Ask For Help
- Topic: running a script last at the startup Topic is solved
- Replies: 2
- Views: 72
running a script last at the startup Topic is solved
I have this script at the Startup menu Run https://www.nationalgeographic.com/ WinWait ahk_exe chrome.exe WinActivate ahk_exe chrome.exe Sleep 2000 Send {End} Return however since I have other applications that run at opening my machine the script doesn't work as expected since it is not getting my ...
- 10 Jan 2021, 13:45
- Forum: Ask For Help
- Topic: refocusing my mouse cursor to the keyboard cursor Topic is solved
- Replies: 4
- Views: 104
Re: refocusing my mouse cursor to the keyboard cursor Topic is solved
this works for the first time ^!k:: ; scroll down 1 MouseMove A_CaretX,A_CaretY Send {WheelDown} Return ^!i:: ;scroll up 1 MouseMove A_CaretX,A_CaretY Send {WheelUp} Return but then there is a problem with the cursor, and at certain case stops working since the Mouse goes to the top of the screen I ...
- 05 Jan 2021, 11:23
- Forum: Ask For Help
- Topic: refocusing my mouse cursor to the keyboard cursor Topic is solved
- Replies: 4
- Views: 104
refocusing my mouse cursor to the keyboard cursor Topic is solved
I want to add before this script that the mouse pointer should move to the area where my keyboard cursor is
Code: Select all
^!k:: Send {WheelDown} ; scroll down 5
^!i:: Send {WheelUp} ;: 1; scroll down 1
- 29 May 2020, 08:52
- Forum: Ask For Help
- Topic: simulating two fingers scrolling at the touchpad Topic is solved
- Replies: 3
- Views: 362
Re: simulating two fingers scrolling at the touchpad Topic is solved
no.
at Word those arrows do not scroll up or down
I would have to view the scroll bar and focus at the scroll bar to do that
two fingers scrolling at the touchpad is more simple
therefore I wonder which AHK command would scroll down about 5 lines
at Word those arrows do not scroll up or down
I would have to view the scroll bar and focus at the scroll bar to do that
two fingers scrolling at the touchpad is more simple
therefore I wonder which AHK command would scroll down about 5 lines
- 28 May 2020, 20:46
- Forum: Ask For Help
- Topic: simulating two fingers scrolling at the touchpad Topic is solved
- Replies: 3
- Views: 362
simulating two fingers scrolling at the touchpad Topic is solved
I need to create a shortcut that simulates when at the touchpad I drag two fingers to scroll
My goal is to scroll down a little my current window
I don't know where to go for a script...
My goal is to scroll down a little my current window
I don't know where to go for a script...
- 01 Jan 2020, 13:42
- Forum: Ask For Help
- Topic: Finding each win position & applying a command to each one
- Replies: 23
- Views: 2046
Re: Finding each win position & applying a command to each one
ok, I replaced the whole previous script and run the last one with only Word and the problem persists (: I mean, for a second it does the job but then again it maximizes (BTW this code is added to my main ahk codes, I understand I should nor run independently --- I add this comment since the code st...
- 31 Dec 2019, 09:49
- Forum: Ask For Help
- Topic: Finding each win position & applying a command to each one
- Replies: 23
- Views: 2046
Re: Finding each win position & applying a command to each one
I'm frustrated. I do have the same environment: Windows 10, autohotkey same version and Office 365. I don't understand why it's not working. (I use Scite and not AHK Studio, I understand that is unrelated) BTW, I didn't understand your second paragraph. Are you saying that I should not pull the code...
- 30 Dec 2019, 17:34
- Forum: Ask For Help
- Topic: How to switch Win Shift S to other shortcut Topic is solved
- Replies: 1
- Views: 470
How to switch Win Shift S to other shortcut Topic is solved
I would like to set the default shortcut Win + Shift + S to another shortcut
- 30 Dec 2019, 14:16
- Forum: Ask For Help
- Topic: Finding each win position & applying a command to each one
- Replies: 23
- Views: 2046
Re: Finding each win position & applying a command to each one
Glad to know that finally you got my idea
Sorry if I wasn't able to explain myself
I tested with just one Word and it is not working: the result is a maximized window (without any bars)

I tested with just one Word and it is not working: the result is a maximized window (without any bars)
- 27 Dec 2019, 17:29
- Forum: Ask For Help
- Topic: Finding each win position & applying a command to each one
- Replies: 23
- Views: 2046
Re: Finding each win position & applying a command to each one
mmm
my knowledge is quite limited
if that's possible for you great, if not .... (patience)
thanks so much for your help
my knowledge is quite limited
if that's possible for you great, if not .... (patience)
thanks so much for your help
- 27 Dec 2019, 16:44
- Forum: Ask For Help
- Topic: Finding each win position & applying a command to each one
- Replies: 23
- Views: 2046
Re: Finding each win position & applying a command to each one
"ToggleFull" not only hides the ribbon, hides the main toolbar and Quick Access Tool bar and maximizes the Word file. However if after that you apply a specific Window Size you can have the advantages of not viewing any bar while working not in the maximize mode. So, my desire is a script that remem...
- 27 Dec 2019, 15:57
- Forum: Ask For Help
- Topic: Finding each win position & applying a command to each one
- Replies: 23
- Views: 2046
Re: Finding each win position & applying a command to each one
my goal is to keep the same windows size that all my current Word docs have but without any bar (main toolbar or Quick Access tool bar). The logic should be: 1. discover and get the size of each win of any Word opened 2. apply ToggleFull (that will maximize all the windows) 3. apply to each window t...
- 27 Dec 2019, 14:56
- Forum: Ask For Help
- Topic: Finding each win position & applying a command to each one
- Replies: 23
- Views: 2046
Re: Finding each win position & applying a command to each one
it does not work (:
even for only one Word opened
I can see that it minimizes but finally it maximizes again (: !!
even for only one Word opened
I can see that it minimizes but finally it maximizes again (: !!