Search found 10 matches

by trialAdd
02 Dec 2023, 12:36
Forum: Ask for Help (v1)
Topic: Is this some how working even though documentation doesnt mention it
Replies: 1
Views: 177

Is this some how working even though documentation doesnt mention it

var1:="" , Var2:=1 Gui, Add, CheckBox,% " x20 y40 w300 h30 0x100 vVar1 Checked0"Var1 " gchecklabel" , this is a test check box Gui, Add, CheckBox,% " x20 y+0 w300 h30 0x100 vVar2 Checked0"Var2 " gchecklabel" , this is a test check box 2 Gui, show return checklabel: return Esc:: ExitApp From Doc : T...
by trialAdd
23 Nov 2023, 04:11
Forum: Ask for Help (v1)
Topic: Can this c++ thing be done in ahk
Replies: 7
Views: 577

Re: Can this c++ thing be done in ahk

i will pay if anybody can help me with this
by trialAdd
18 Nov 2023, 17:49
Forum: Ask for Help (v1)
Topic: Can this c++ thing be done in ahk
Replies: 7
Views: 577

Re: Can this c++ thing be done in ahk

hMapFile := DllCall("OpenFileMapping", "Ptr", 0xF001F, "Int", 0, "Str", "RTSSSharedMemoryV2") msgbox, % hMapFile pMapAddr := DllCall("MapViewOfFile", "Ptr", hMapFile, "UInt", 0xF001F, "UInt", 0, "UInt", 0, "UInt", 0) msgbox, % pMapAddr i am getting some out put if Rivatuner statistics server is run...
by trialAdd
18 Nov 2023, 17:44
Forum: Ask for Help (v1)
Topic: Can this c++ thing be done in ahk
Replies: 7
Views: 577

Re: Can this c++ thing be done in ahk

No body has any clue on this ?
by trialAdd
16 Nov 2023, 01:14
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 591383

Re: FindText - Capture screen image into text and then find it Topic is solved

if loop is the main issue then adding sleep would have reduced cpu usage , but spike of cpu usage is still staying high with findtext
by trialAdd
15 Nov 2023, 11:54
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 591383

Re: FindText - Capture screen image into text and then find it Topic is solved

Code: Select all

loop, 200
{
sleep,10
if (ok:=FindText(X, Y, 630-150000, 622-150000, 630+150000, 622+150000, 0, 0, Text))
{
  ; FindText().Click(X, Y, "L")
}
}
heavy CPU Usage like 50 to 60 %
why is that ?
by trialAdd
14 Nov 2023, 05:07
Forum: Ask for Help (v1)
Topic: Can this c++ thing be done in ahk
Replies: 7
Views: 577

Re: Can this c++ thing be done in ahk

here is the basic requirement
https://www.guru3d.com/download/rtss-rivatuner-statistics-server-download/
allow to sharedmemory

so the basic question is how to send the data to it.
by trialAdd
14 Nov 2023, 04:58
Forum: Ask for Help (v1)
Topic: Can this c++ thing be done in ahk
Replies: 7
Views: 577

Re: Can this c++ thing be done in ahk

Code: Select all

hMapFile := DllCall("OpenFileMapping", "Ptr", 0xF001F, "Int", 0, "Str", "RTSSSharedMemoryV2")
msgbox, % hMapFile
i am getting some out put from the above like 640 etc, but dont know how to proceed from here
by trialAdd
14 Nov 2023, 04:48
Forum: Ask for Help (v1)
Topic: Simple question related to hotkey ?? Topic is solved
Replies: 6
Views: 530

Re: Simple question related to hotkey ?? Topic is solved

Code: Select all

m::
loop,
{
sleep,50
if (!getkeystate("m","p")
{
msgbox, m released
break
}
if (getkeystate("Ctrl","p")) 
{
msgbox, m and ctrl pressed
break
}
if (getkeystate("Alt","p"))
{
msgbox, m and ctrl pressed
break
}

}
return
A dirty way to do it
by trialAdd
14 Nov 2023, 04:38
Forum: Ask for Help (v1)
Topic: Can this c++ thing be done in ahk
Replies: 7
Views: 577

Can this c++ thing be done in ahk

#include <windows.h> #include "RTSSSharedMemory.h" #pragma comment(linker, "/SUBSYSTEM:WINDOWS") #pragma comment(linker, "/NODEFAULTLIB") #pragma comment(linker, "/INCREMENTAL:NO") #define UniqueMapName "RTSSSharedMemory_RTSS_Timer" typedef struct { HANDLE hMapFile; LPRTSS_SHARED_MEMORY pMem; } THR...

Go to advanced search