Search found 52 matches

by ceyhunveysel
13 Oct 2021, 17:17
Forum: Ask for Help (v1)
Topic: Long press right mouse key to send alt f4
Replies: 12
Views: 2630

Re: Long press right mouse key to send alt f4

I can probably try making a script for this, but I don't want to write a script for another person (because asking someone to make an ahk script for you on a autohotkey forum is kind of lame, lol)
by ceyhunveysel
13 Oct 2021, 17:16
Forum: Ask for Help (v1)
Topic: Long press right mouse key to send alt f4
Replies: 12
Views: 2630

Re: Long press right mouse key to send alt f4

You can do a ~RButton:: (see Hotkey) and Sleep as much as you want, then check again using GetKeyState if right click is still being pressed, and then maybe use WinKill, A (standing for Active) if you want to kill the active app (it does the same thing as a ALT+F4)
by ceyhunveysel
24 Aug 2021, 12:27
Forum: Ask for Help (v1)
Topic: Convert .ahk to .dll Topic is solved
Replies: 21
Views: 7118

Re: Convert .ahk to .dll Topic is solved

I'm really fucking sorry for this thread. I don't know what I was thinking when I made this, apologies
by ceyhunveysel
20 May 2020, 05:46
Forum: Ask for Help (v1)
Topic: I need help
Replies: 2
Views: 254

Re: I need help

Try using MouseMove and Hotkey (IfWinActive could be wanted too)
by ceyhunveysel
31 Mar 2020, 18:19
Forum: Gaming Help (v1)
Topic: Minecraft auto miner (simple)
Replies: 3
Views: 1316

Re: Minecraft auto miner (simple)

@Hellbent He's saying by "tab out" he means that he can get out of the Minecraft window.
by ceyhunveysel
03 Feb 2020, 11:32
Forum: Ask for Help (v1)
Topic: Injecting a .DLL file into a process
Replies: 0
Views: 361

Injecting a .DLL file into a process

Hello!
The title is what I'm trying to do on a program.

I just want to inject a DLL into a process.

Thanks.
by ceyhunveysel
30 Dec 2019, 16:38
Forum: Ask for Help (v1)
Topic: Is there way to execute a dll (not ahk) on a program?
Replies: 1
Views: 467

Is there way to execute a dll (not ahk) on a program?

Yeah, the title is exactly what I'm asking for.

(except its Inject not execute)
by ceyhunveysel
14 Dec 2019, 17:10
Forum: Ask for Help (v1)
Topic: How To: Long Left Click?
Replies: 1
Views: 563

Re: How To: Long Left Click?

Sleep is meant for milliseconds.
by ceyhunveysel
13 Dec 2019, 04:05
Forum: Ask for Help (v1)
Topic: Convert .ahk to .dll Topic is solved
Replies: 21
Views: 7118

Re: Convert .ahk to .dll Topic is solved

I did try that
Also, @swagfag, that is not possible for me I know nothing about C, etc. Except for AutoHotkey.


:bigoof:
by ceyhunveysel
11 Dec 2019, 16:41
Forum: Ask for Help (v1)
Topic: FileAppend: Appending to multiple files on one directory at once Topic is solved
Replies: 2
Views: 590

FileAppend: Appending to multiple files on one directory at once Topic is solved

Hello fellow member.
I am asking if I can fappend to multiple files at once.
Example:

Code: Select all

FileAppend,
(
Hello
This is some text
), %A_Desktop%\*.*
Is there a way to do that?
Or can you even do that?
by ceyhunveysel
11 Dec 2019, 16:36
Forum: Ask for Help (v1)
Topic: Convert .ahk to .dll Topic is solved
Replies: 21
Views: 7118

Re: Convert .ahk to .dll Topic is solved

compile it as a .dll
I said that I would compile it as a .dll.
Hope you got it.
by ceyhunveysel
10 Dec 2019, 16:01
Forum: Ask for Help (v1)
Topic: Convert .ahk to .dll Topic is solved
Replies: 21
Views: 7118

Re: Convert .ahk to .dll Topic is solved

OK! Goddamnit! I'm gonna explain this ONE MORE TIME and the FINAL TIME. I've made an AutoHotkey script, that I will include on one of my OTHER scripts. But I want to compile my FIRST script to a .dll and #Include it in one of my scripts, but AHK would understand the FIRST script I created and load i...
by ceyhunveysel
10 Dec 2019, 15:32
Forum: Ask for Help (v1)
Topic: Setting wallpapers up using AutoHotkey Topic is solved
Replies: 6
Views: 3782

Re: Setting wallpapers up using AutoHotkey Topic is solved

Thanks, @Hellbent! I love your channel, you make gr8 tutorials.
The one you said worked, thanks, brother!!
by ceyhunveysel
10 Dec 2019, 12:20
Forum: Ask for Help (v1)
Topic: Setting wallpapers up using AutoHotkey Topic is solved
Replies: 6
Views: 3782

Setting wallpapers up using AutoHotkey Topic is solved

Hello, fellow AutoHotkey forum member.
Could you set up a PC wallpaper using AutoHotkey?
Example:

Code: Select all

SetWallpaper, %A_WorkingDir%\wallpaper.png
Thanks.
by ceyhunveysel
09 Dec 2019, 14:04
Forum: Spiele
Topic: Taste alle paar Sekunden drücken
Replies: 8
Views: 13934

Re: Taste alle paar Sekunden drücken

Hello,
Duplicating forum posts are not allowed.
Thank you.

-----------------------------------------------------------------

Hallo,
Das Duplizieren von Forenbeiträgen ist nicht erlaubt.
Vielen Dank.
by ceyhunveysel
09 Dec 2019, 11:10
Forum: Ask for Help (v1)
Topic: Is there anything called "Online" in autohotkey?
Replies: 3
Views: 637

Is there anything called "Online" in autohotkey?

Can you make an "online" game with Autohotkey?
Just AutoHotkey though, no other languages.
by ceyhunveysel
09 Dec 2019, 05:59
Forum: Ask for Help (v1)
Topic: Would you help me
Replies: 6
Views: 779

Re: Would you help me

Code: Select all

J:: ; If the J key has been pressed:
{ ; Multiline Addition
	sleep 1000 ; Wait 1000 miliseconds (1 second)
	Send, {J} ; Send the key "J"
	return ; Not required, but to be honest it makes the script faster
} ; Multiline Addition
by ceyhunveysel
09 Dec 2019, 05:35
Forum: Ask for Help (v1)
Topic: Convert .ahk to .dll Topic is solved
Replies: 21
Views: 7118

Re: Convert .ahk to .dll Topic is solved

Ok, Jesus, I'm giving up!
by ceyhunveysel
08 Dec 2019, 19:11
Forum: Ask for Help (v1)
Topic: Would you help me
Replies: 6
Views: 779

Re: Would you help me

I think you could just use sleep.
See the article "sleep".

Go to advanced search