Search found 13 matches

by parktaije
04 Mar 2024, 19:19
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 501

Re: Find the coordinates of X

@garry
Reading Pages, I use it as follows.
First I copy words, phrases or sentences to clipborad,
merely I use autoclip so I just drag them,
then they are translated.
use1.PNG
use1.PNG (183.21 KiB) Viewed 284 times
use2.PNG
use2.PNG (293.55 KiB) Viewed 284 times
use3.PNG
use3.PNG (314.59 KiB) Viewed 284 times
by parktaije
03 Mar 2024, 19:35
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 501

Re: Find the coordinates of X

I succeeded with a small green square png file.
Thank you very much for your help.
If it weren't for you, I would have given up on this work.
Thank you.
by parktaije
03 Mar 2024, 10:12
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 501

Re: Find the coordinates of X

Thank you very much for your advice sincerely.
But it still not work on my system, Alas!
thanks.png
thanks.png (143.26 KiB) Viewed 399 times
.
And my version is 1.1.37.01
I'll keep trying to find out what is wrong.
Thank you.
by parktaije
03 Mar 2024, 00:37
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 501

Re: Find the coordinates of X

the part of the web page's source code about the images are these <div class=btn_translation___b0nPG><button id=btnTranslate class=btn_text___3-laJ title type=button><span class=translate_pc___2dgT8>Translate</span><span class="translate_mobile___BedQl sf-hidden">Translate</span></button></div <butt...
by parktaije
03 Mar 2024, 00:26
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 501

Re: Find the coordinates of X

I tried this code And I got the errorlevel 1. CoordMode, mouse, Screen ImageSearch, foundX, foundY, 0, 0, %A_ScreenWidth%, %A_ScreenHeight%, s:\image.png MsgBox % "The Error Level is (" . ErrorLevel . ")." ImageSearch, foundX, foundY, 0, 0, %A_ScreenWidth%, %A_ScreenHeight%, s:\image2.jpg MsgBox % "...
by parktaije
02 Mar 2024, 21:19
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 501

Re: Find the coordinates of X

Thanks for your concern.
I tried it.
ImageSearch, foundX, foundY, 0, 0, %A_ScreenWidth%, %A_ScreenHeight%, s:\image.png
But It not work.
So I think It's not an image or something or made a mistake
by parktaije
02 Mar 2024, 20:50
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 501

Find the coordinates of X

It's Chrome and papago.naver.com
I want to get the coordinates of the red circled X
How can I find the coordinates of the red circled X
xo.JPG
xo.JPG (41.69 KiB) Viewed 501 times
Please help me.
by parktaije
11 Jun 2022, 01:48
Forum: Ask for Help (v1)
Topic: RegexMatch does't match all the subpatterns
Replies: 1
Views: 222

RegexMatch does't match all the subpatterns

Haystack:="book-1 book-2 book-11 book-12 book-123 book-245 book-2345" NeedleRegEx:="Oim)book-\d{2,3}" RegExMatch(Haystack, NeedleRegEx , OutputVar) matchcount:=OutputVar.Count() msgbox, % NeedleRegEx msgbox, match count is %matchcount% RegexMatch does't match all the subpatterns. It matches the fir...
by parktaije
09 May 2022, 13:04
Forum: Adventure IDE
Topic: Adventure - General-Purpose IDE, Lightweight Text Editor
Replies: 90
Views: 58611

Re: Adventure - General-Purpose IDE, Lightweight Text Editor

I like regular expression.
In Expressive

Regular Expression:
im)(\.)

Text:
Nacy.Mary.Jane

replace:
$1\r\n

It shows:
Nacy.\r\nMary.\r\nJane

But I want It shows:
Nacy.
Mary.
Jane

Is there anything wrong In Regular Expression: im)(\.) or replace: $1\r\n ?
by parktaije
07 Oct 2018, 16:03
Forum: Ask for Help (v1)
Topic: RegExMatch with ^
Replies: 2
Views: 359

Re: RegExMatch with ^

output contains the string GN[abc61]\n[END\]\n7. Begin or GN[abc61]\r\n[END\]\r\n7. Begin , depending on what line endings uve chosen to save the file with. From the PoV of RegExMatch with the default flags, the start of line isnt the [ in [END\] , but the G in GN[abc61] . Ur regexp fails to match,...
by parktaije
07 Oct 2018, 09:03
Forum: Ask for Help (v1)
Topic: RegExMatch with ^
Replies: 2
Views: 359

RegExMatch with ^

RegExMach seems not to wrok properly with ^ testtext.txt is GN[abc61] [END\] 7. Begin RegExTest.ahk is ;RegExMatch test ^ FileRead, output, testtext.txt if not ErrorLevel { RegExMatch(output, "^\[(.+?)\\]", OutputVarf) RegExMatch(output, "^(\d{1,2})\. .*?", OutputVars) MsgBox % outputvarf1 " " outpu...
by parktaije
09 Jul 2018, 01:17
Forum: Ask for Help (v1)
Topic: Send {text} , Send {raw}
Replies: 4
Views: 12603

Re: SEND {TEXT} , SEND {RAW}

- Send uses special treatment for the 6 characters: {}+^#! and for strings within curly braces e.g. {Tab}/{Enter}/{Down}/{F1}. - SendRaw/Send {Raw}/Send {Text} treat all characters literally, however, ` is an exception, it still has a special meaning. So `` -> ` and `% -> %. - {Raw} and {Text} are ...
by parktaije
08 Jul 2018, 14:10
Forum: Ask for Help (v1)
Topic: Send {text} , Send {raw}
Replies: 4
Views: 12603

Send {text} , Send {raw}

Hellow!
I have a question.

Are there any differences in the following?

run notepad.exe
sleep 1000
send, {RAW}``100`%
send, {TEXT}``100`%

I think send, {TEXT}``100`% should be printed ``100`%
but it prints `100%
And there are no differences.
Am I wrong?

Kind regards,
Park Taije.

Go to advanced search