Search found 10 matches
- 18 Jan 2019, 22:53
- Forum: Ask For Help
- Topic: how to paste text to element? Topic is solved
- Replies: 3
- Views: 790
Re: how to paste text to element? Topic is solved
What about when you have to click a radio button first? So, the radio button runs a script to update the options, the url stays static, but I cannot figure out how to update the value in this scenario... ideas?
- 18 Sep 2018, 17:59
- Forum: Ask For Help
- Topic: About the screen coordinates
- Replies: 5
- Views: 853
Re: About the screen coordinates
This may help get you started:
Be sure to set the coordmode you desire. I have done stuff like this in the past, makes it quite easy to get a lot of coordinates.
Code: Select all
^LButton::
MouseGetPos, xx, yy
Return
RButton::
SendInput, (%xx%, %yy%)
Return
- 14 Sep 2018, 13:41
- Forum: Ask For Help
- Topic: Copy from excel and paste in Oracle
- Replies: 2
- Views: 572
Re: Copy from excel and paste in Oracle
Totally doable with AHK. If I were you i would try pulover's macrocreator first, you can learn a lot from it and deconstruct the code to write more robust/reliable code directly in AHK.
- 13 Sep 2018, 18:41
- Forum: Ask For Help
- Topic: Image to text function
- Replies: 3
- Views: 717
Re: Image to text function
Have you seen the FindText thread? It is a fantastic utility and I think reading through it might get you pointed in the right direction.
https://autohotkey.com/boards/viewtopic.php?t=17834
https://autohotkey.com/boards/viewtopic.php?t=17834
- 13 Sep 2018, 18:14
- Forum: Ask For Help
- Topic: Random text display from array
- Replies: 2
- Views: 543
Re: Random text display from array
this way works:
Code: Select all
F1::
option1 = "hi"
option2 = "yo"
option3 = "sup?"
Random, rn, 1, 3
msgbox % option%rn%
Return
F12::ExitApp
- 12 Sep 2018, 19:10
- Forum: Ask For Help
- Topic: use text from clipboard to search on a particular website
- Replies: 4
- Views: 820
Re: use text from clipboard to search on a particular website
Can't test your site, but this works:
Code: Select all
text := "maps"
Run "www.google.com/%text%"
- 12 Sep 2018, 19:05
- Forum: Ask For Help
- Topic: use text from clipboard to search on a particular website
- Replies: 4
- Views: 820
Re: use text from clipboard to search on a particular website
try
Code: Select all
text := Clipboard
Run "https://old.sketchengine.co.uk/admin/ca/userprofile/?q=%s" . %text%
- 12 Sep 2018, 18:54
- Forum: Ask For Help
- Topic: Multiple cordinates click on one hotkey.
- Replies: 4
- Views: 615
Re: Multiple cordinates click on one hotkey.
I wrote a little function that you might benefit from. It sends a click to the coordinates you specify as x and y and returns your mouse to the same location it was in when the code was executed. fn_click(x,y) { CoordMode, mouse, Screen MouseGetPos, xpos, ypos Click, Left, %x%, %y%, 1 MouseMove, %xp...
- 21 Aug 2018, 11:07
- Forum: Ask For Help
- Topic: ArcMap comands
- Replies: 1
- Views: 613
Re: ArcMap comands
Hi there, I have been making all sorts of commands for ArcMap for a while now. Something similar to what you desire (to begin editing a layer) I have set up like this: #IfWinActive, ahk_exe ArcMap.exe ^RButton:: ;Begin Editing layer when selected in TOC { Click, Right Send, {e 2} Send, {Right} {Ente...
- 16 Aug 2018, 12:50
- Forum: Scripts and Functions
- Topic: FindText - Capture screen image into text and then find it Topic is solved
- Replies: 643
- Views: 240415
Re: FindText - Capture screen image into text and then find it Topic is solved
Just want to thank you for this incredible utility, I use it all the time!