Search found 11 matches

by D4ng_kun
24 Jul 2023, 03:44
Forum: Ask for Help (v1)
Topic: Telegram Automation
Replies: 87
Views: 32814

Re: Telegram Automation

Hi gregster. I know this topic is a few years old already but just wondering if you are still available for some question ? Thanks for your very newbie-friendly guideline, i was able to get my bot do most of task, but I am stucking at sending photos. It was OK when I send file with filename directly...
by D4ng_kun
02 Sep 2021, 22:29
Forum: Notepad++
Topic: Setup Notepad++ for AutoHotkey
Replies: 167
Views: 524479

Re: Setup Notepad++ for AutoHotkey

Sorry guys, i have a problems with Text color with the ahk_Userdefine language (xml file) On my laptop, it worked perfectly fine with, dark theme (notepad++ Obsidian theme), with Default Text and Number turn into white color, so it's very easy to read with dark background. The problem is in my deskt...
by D4ng_kun
25 Jun 2021, 03:10
Forum: Scripts and Functions (v1)
Topic: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)
Replies: 124
Views: 43769

Re: HotVoice - Speech Recognition + Volume detection for AHK (C# DLL)

Hello, Can you help me with the installation of the components needed for this to work? From the initial post the "Microsoft Speech Platform Runtime" is no longer available. I use Windows 10 - 64 bit, Ahk 64 bit. Thank you. IHuh, it seems Microsoft updated that component this month, on Feb 10 - and...
by D4ng_kun
24 Jun 2021, 01:53
Forum: Ask for Help (v1)
Topic: Trouble with math function!!Plz help me
Replies: 8
Views: 403

Re: Trouble with math function!!Plz help me

A "normal" space (or more than one) wouldn't be a problem here - but I guess you are from a country with a language that uses these spaces (sometimes ?) ? But there was only one of it in your whole code which you needed to remove/replace. The rest are regular space characters - they can stay. At le...
by D4ng_kun
24 Jun 2021, 00:18
Forum: Ask for Help (v1)
Topic: Trouble with math function!!Plz help me
Replies: 8
Views: 403

Re: Trouble with math function!!Plz help me

Yes, ang3 := ang2 - ang1 ; ideographic space removed should work. but without the non-printable Unicode character you have behind ang3 in ang3 = %ang2% - %ang1% which is still present in TAC109's edited code above... it seems to be an "Ideographic Space" (U+3000) and throws off the AHK parser. Past...
by D4ng_kun
24 Jun 2021, 00:02
Forum: Ask for Help (v1)
Topic: Trouble with math function!!Plz help me
Replies: 8
Views: 403

Re: Trouble with math function!!Plz help me

TAC109 wrote:
23 Jun 2021, 23:53

Code: Select all

ang3 := ang2 - ang1
sorry but what do u mean ?
by D4ng_kun
23 Jun 2021, 23:02
Forum: Ask for Help (v1)
Topic: Trouble with math function!!Plz help me
Replies: 8
Views: 403

Trouble with math function!!Plz help me

I am writing a simple script to calculate mouse coordiation but stuck with the simple math function The problem is I use Asin and Acos to get 2 different angle (ang1 and ang2) which i confirmed the result with Msgbox But the next step is a simple subtraction "ang3 := ang2 - ang1", but the script jus...
by D4ng_kun
08 Jun 2021, 00:59
Forum: Gaming Help (v1)
Topic: Send Key with pressed count memory
Replies: 7
Views: 812

Re: Send Key with pressed count memory

your code seems to give me 1 extra "R" pressed Really? At least here in the editor my version works correctly. Just for fun, I shortened the script (my version) a bit: $r:: IF ++RCount Return SetTimer, RCount, 1000,% RCount:=1 RCount: IF RCount-- Send, r Else SetTimer,, Off,% RCount:="" Return Yeah...
by D4ng_kun
07 Jun 2021, 01:48
Forum: Gaming Help (v1)
Topic: Send Key with pressed count memory
Replies: 7
Views: 812

Re: Send Key with pressed count memory

Then perhaps: $r:: IF RCount = { Send, r SetTimer, RCount, 1000 RCount = 0 } Else RCount++ Return RCount: IF RCount > 0 { Send, r RCount-- } Else { SetTimer, RCount, Off RCount = } Return OMG, it works like a charm. Thanks you so much Rohwedder, u just saved my day, big times. It took me a while to...
by D4ng_kun
07 Jun 2021, 01:09
Forum: Gaming Help (v1)
Topic: Send Key with pressed count memory
Replies: 7
Views: 812

Re: Send Key with pressed count memory

Hallo, do I understand correctly? After each R sent, at least 1 second must pass before the next R can be sent? Then try: $r:: IF (RWaitTime < A_TickCount) { Send, r RWaitTime := A_TickCount + 1000 } Return Thanks for replying Rohwedder, Since my English is poor, so it's hard for me to explain the ...
by D4ng_kun
06 Jun 2021, 23:58
Forum: Gaming Help (v1)
Topic: Send Key with pressed count memory
Replies: 7
Views: 812

Send Key with pressed count memory

Hi guys! This is the first time I ask for help in this forum. I learned alot throughs post in this forum, but this time i cant find the answear just by googling. Also sorry for my poor English I am trying to write a script for game in which can help me send keystroke with delay and memory count. Her...

Go to advanced search