Search found 30 matches

by terrypaton2
27 Jun 2019, 00:12
Forum: Ask for Help (v1)
Topic: How to write "dot above ˙" character to file?
Replies: 2
Views: 637

How to write "dot above ˙" character to file?

I need to write " ˙ " to file , so I use fileappend like below:
str:= "dot above is ˙ "
fileappend, %str%,proxy.text

but its not working, I got result "dot above is ?"

How to write "dot above ˙" character to file?
by terrypaton2
29 Apr 2019, 11:02
Forum: Ask for Help (v1)
Topic: SubstancePainter + Wacom
Replies: 6
Views: 1688

Re: SubstancePainter + Wacom

OK, I just install substance Painter and use it with my wacom pen. Its really not working
by terrypaton2
29 Apr 2019, 10:37
Forum: Ask for Help (v1)
Topic: SubstancePainter + Wacom
Replies: 6
Views: 1688

Re: SubstancePainter + Wacom

Did you try to change the hotkey?
by terrypaton2
29 Apr 2019, 09:18
Forum: Ask for Help (v1)
Topic: SubstancePainter + Wacom
Replies: 6
Views: 1688

Re: SubstancePainter + Wacom

What software do you use to draw with tablet pen? That script only working if "Substance Painter.exe" software is openning . If you close "Substance Painter.exe" software, Your code will not work You can remove "#IfWinActive ahk_exe Substance Painter.exe". It will run with any software, any envirome...
by terrypaton2
29 Apr 2019, 08:23
Forum: Ask for Help (v1)
Topic: Why does this happen
Replies: 2
Views: 558

Re: Why does this happen

if Toggle == 1.while loop infinite. you shouldn't use infinite loop ,you will receive stack overflow error. use code below for same purpose :

Code: Select all

Settimer, auto, 50
return

auto:
if(Toggle){
Send, {enter Down}
Sleep, 50
Send, {enter Up}
}
return

$F2::
Toggle := !Toggle

return
by terrypaton2
29 Apr 2019, 05:07
Forum: Ask for Help (v1)
Topic: ControlClick NA not working correct on chrome
Replies: 9
Views: 3225

Re: ControlClick NA not working correct on chrome

Who else get same issue? ControlClick NA alway activate chrome when use combine with settimer. https://youtu.be/paTwmDXbmOY
by terrypaton2
28 Apr 2019, 22:54
Forum: Ask for Help (v1)
Topic: ControlClick NA not working correct on chrome
Replies: 9
Views: 3225

Re: ControlClick NA not working on chrome

@gregster . I update my post. chrome alway activate in settimer.
I just want to click a button, click at edittext area and put some text on the chrome without activate the chrome.
by terrypaton2
28 Apr 2019, 08:11
Forum: Ask for Help (v1)
Topic: ControlClick NA not working correct on chrome
Replies: 9
Views: 3225

ControlClick NA not working correct on chrome

I want to auto Click button, click at area edittext and put some text on the chrome without activate chrome . So I wrote script like below . if ControlClick in settimer it alway activate the chrome video : https://youtu.be/paTwmDXbmOY update: SetControlDelay -1 SetTitleMatchMode, 2 settimer, aa, 100...
by terrypaton2
13 Apr 2019, 23:24
Forum: Scripts and Functions (v1)
Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No IE!
Replies: 668
Views: 471644

Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!

I am creating a mini ahk tool for my jobs, I want to Autohotkey will be return a msgbox when chrome browser creating a new tab.
how I can detect if a new tab onCreate ?
by terrypaton2
13 Apr 2019, 21:57
Forum: Ask for Help (v1)
Topic: How to detect a chrome's tab onCreate?
Replies: 3
Views: 1078

How to detect a chrome's tab onCreate?

I am creating a mini ahk tool for my jobs, I want to Autohotkey will be return a msgbox when chrome browser creating a new tab.
How to detect a chrome's tab onCreate in autohotkey?
by terrypaton2
28 Mar 2019, 05:37
Forum: Ask for Help (v1)
Topic: How to get text from a window?
Replies: 5
Views: 950

Re: How to get text from a window?

For some reason I need to run firefox on bluestack
by terrypaton2
28 Mar 2019, 05:27
Forum: Ask for Help (v1)
Topic: How to get text from a window?
Replies: 5
Views: 950

Re: How to get text from a window?

@gregster , I run firefox on bluestack, I want to get all text on firefox, It is text be cause I can copy and paste them on Bluestack . I dont want to use OCR because it sooo slow.
by terrypaton2
28 Mar 2019, 05:11
Forum: Ask for Help (v1)
Topic: How to get text from a window?
Replies: 5
Views: 950

How to get text from a window?

I want to get all text appear on the screen bluestack like below:
drive.google.com/file/d/14N_FzaX8bhkSi9djRz66fiBoCW7TncDf/view?usp=sharing

Is there anyway to get all text?

I tried ControlGet, Wingettext but does not work.
by terrypaton2
12 Sep 2018, 22:17
Forum: Ask for Help (v1)
Topic: Mcode! how to use pow,sqrt,... in machine code
Replies: 2
Views: 969

Mcode! how to use pow,sqrt,... in machine code

Hi Pls view code below, I get a error : CONTINUABLE EXCEPTION_ACCESS_VIOLATION when I run code. Why I can not use pow in this case? I tried compiler with flag -lm but not work Varsetcapacity(in1,4,0) Numput(2,in1,0,"int") Varsetcapacity(out,4,0) //hex code :534883EC20660FEFC9F20F1005000000004889D3F2...
by terrypaton2
11 Sep 2018, 12:24
Forum: Ask for Help (v1)
Topic: How to I create gaussian blur image?
Replies: 3
Views: 915

Re: How to I create gaussian blur image?

Masonjar13 wrote:GIMP has a command-line interface, open-source and free.
thank you but I need to script run on ahk
by terrypaton2
11 Sep 2018, 10:01
Forum: Ask for Help (v1)
Topic: How to I create gaussian blur image?
Replies: 3
Views: 915

How to I create gaussian blur image?

Hi,
I tried Gdip_BlurBitmap but the output Image is strange. So, Any way to create gaussian blur image?
by terrypaton2
31 Aug 2018, 09:45
Forum: Ask for Help (v1)
Topic: machine code alway return -0.00000
Replies: 5
Views: 1559

Re: machine code alway return -0.00000

Helgef wrote:Your float is stored at a relative address, the address is supposed to be determined at link time. You have to link it manually.
thank you but I am a newbie, How do I do that? Can you share me a example?

Go to advanced search