Search found 216 matches

by ibieel
18 Feb 2024, 12:54
Forum: Ask for Help (v1)
Topic: un-press the key even if it is being physically pressed on the keyboard
Replies: 2
Views: 75

un-press the key even if it is being physically pressed on the keyboard

Hey guys, I'm trying to put together a script that does the following: - If the Shift, Alt or Control key is pressed, un-press the key even if it is being physically pressed on the keyboard. I made this script: #Persistent #NoEnv ; Recommended for performance and compatibility with future AutoHotkey...
by ibieel
10 Feb 2024, 15:28
Forum: Ask for Help (v1)
Topic: GDIP not working (graphics card conflict)
Replies: 1
Views: 106

GDIP not working (graphics card conflict)

hey guys, I have a problem using GDIP, I have 2 graphics cards in my computer. 1- board integrated into the CPU (Processor) 2- graphics card dedicates PCI-E When I use GDIP Bitmap the screen is all WHITE/BLACK, I need to disable my dedicated PCI-E graphics card for GDIP to work. I haven't found any ...
by ibieel
17 Sep 2023, 00:41
Forum: Ask for Help (v1)
Topic: how detect if script running in a virtual machine
Replies: 0
Views: 203

how detect if script running in a virtual machine

hey guys, I searched the forum about this and only found an old forum link with code in C++.
Is there a way to do this using autohotkey? Or run a C++ script on AutoHotkey?
https://www.codeproject.com/Articles/9823/Detect-if-your-program-is-running-inside-a-Virtual
by ibieel
13 Sep 2023, 20:42
Forum: Ask for Help (v1)
Topic: Programs like Virtual Machines stealing my hook
Replies: 4
Views: 692

Re: Programs like Virtual Machines stealing my hook

XShayanX wrote:
20 May 2021, 05:41
lexikos wrote:
20 May 2021, 02:47
any solution? i have the same problem.
viewtopic.php?f=76&t=121383
by ibieel
13 Sep 2023, 20:40
Forum: Ask for Help (v1)
Topic: Virtual Machine Connection not allowing hotkeys to fire
Replies: 3
Views: 678

Re: Virtual Machine Connection not allowing hotkeys to fire

BoBo wrote:
18 Jun 2020, 08:31
shaharprish wrote:
18 Jun 2020, 09:10
So there's no workaround? A way to have AutoHotKey affect it like other windows?
any solution? i have the same problem.
viewtopic.php?f=76&t=121383
by ibieel
13 Sep 2023, 13:37
Forum: Ask for Help (v1)
Topic: How to use Hotkeys in Virtual Machine Window
Replies: 6
Views: 434

Re: How to use Hotkeys in Virtual Machine Window

image.png . some keys with Shift, Alt, Ctrl, Capslock, NumLock, Scroll Lock are recognized despite this, if I use the command "P" in GetKeyState, the script does not recognize that Shift was pressed. #InstallKeybdHook #Persistent KeyHistory Loop, { if (GetKeyState("LShift")) { ;works ToolTip, hello...
by ibieel
13 Sep 2023, 13:32
Forum: Ask for Help (v1)
Topic: How to use Hotkeys in Virtual Machine Window
Replies: 6
Views: 434

Re: How to use Hotkeys in Virtual Machine Window

mikeyww wrote:
13 Sep 2023, 13:17
Right, hence my suggestion. That's all I have! Others may know more.
image.png
image.png (60.55 KiB) Viewed 358 times
maybe with this debugger you can get some idea.
see that the computer understands that a key was pressed, but cannot tell which one it was.
Have you ever seen this before?
by ibieel
13 Sep 2023, 13:10
Forum: Ask for Help (v1)
Topic: How to use Hotkeys in Virtual Machine Window
Replies: 6
Views: 434

Re: How to use Hotkeys in Virtual Machine Window

Hello, You might want to search forum for this topic; there are other posts & solutions. Could run the script on the VM? Thanks for the answer, I searched and didn't find exactly what I wanted. I don't want to run scripts on a VM, I'm running a script on the HOST computer, however, the "HOTKEYS" pa...
by ibieel
12 Sep 2023, 23:03
Forum: Ask for Help (v1)
Topic: How to use Hotkeys in Virtual Machine Window
Replies: 6
Views: 434

How to use Hotkeys in Virtual Machine Window

hey guys, I use several virtual machines simulating environments to be more efficient when testing some features. However, I have a problem, I would like to create a script in which when I press "1" or "2" or "3" I switch between the virtual machines open on my HOST computer (WinActivate) I used the...
by ibieel
02 Jul 2023, 17:16
Forum: Ask for Help (v1)
Topic: help with Capslock as a hotkey trigger
Replies: 3
Views: 255

Re: help with Capslock as a hotkey trigger

Hello, Have a look at custom combinations . It's not quite what I need. if using: capslock & w:: I would need to press both at the same time. I want to be able to press wasd and then capslock without being both at the same time and it works. It would be like this: if wasd and capslock are pressed =...
by ibieel
02 Jul 2023, 16:35
Forum: Ask for Help (v1)
Topic: help with Capslock as a hotkey trigger
Replies: 3
Views: 255

help with Capslock as a hotkey trigger

hey guys, can you help me? I made this script, it works fine: ; CONFIGS Delay := 50 ;delay to dash Coordinates_SQM_North := [956, 254] Coordinates_SQM_South := [958, 502] Coordinates_SQM_West := [831, 378] Coordinates_SQM_East := [1080, 378] ; Global =================================================...
by ibieel
27 Apr 2023, 18:46
Forum: Ask for Help (v1)
Topic: BlockInput Send doesn't work
Replies: 4
Views: 340

Re: BlockInput Send doesn't work

Afaics, Blockinput, Send is valid syntax, but since the script doesn't send anything, I am not sure what OP's code snippet wants to prove: SendMouse This mode only blocks user inputs while specific send and/or mouse commands are in progress. Specify one of the following words: Send: The user's keyb...
by ibieel
27 Apr 2023, 08:40
Forum: Ask for Help (v1)
Topic: BlockInput Send doesn't work
Replies: 4
Views: 340

BlockInput Send doesn't work

why this script doesnt work?

Code: Select all

#Persistent

BlockInput, Send
msgbox, KeyBoard OFF

Return
by ibieel
18 Apr 2023, 22:42
Forum: Ask for Help (v1)
Topic: GDIP not working in OnTopReplica
Replies: 3
Views: 411

Re: GDIP not working in OnTopReplica

mikeyww wrote:
01 Apr 2023, 15:47
I think that there was another recent post about how to capture a screenshot that included a window that mirrored another part of the screen. You might have a look at that one, too.
can you send me the link of this post? I did not find it. thanks
by ibieel
01 Apr 2023, 15:45
Forum: Ask for Help (v1)
Topic: GDIP not working in OnTopReplica
Replies: 3
Views: 411

GDIP not working in OnTopReplica

Hey guys, I'm not able to use the GDIP in the "OnTopReplica" program
the GDIP capture get a completely black screen, has anyone managed to work around this problem?


here below is the program link, it replicates any window of your windows:
https://github.com/LorenzCK/OnTopReplica
by ibieel
15 Mar 2023, 19:43
Forum: Ask for Help (v1)
Topic: image on dropdownlist is possible?
Replies: 1
Views: 248

image on dropdownlist is possible?

hey guys, is it possible to add images to the dropdownlist?
type using % "HBITMAP:* " Picture


[Mod action: Moved topic to v1 section as snippet indicates v1 code. The main section is for v2.]
by ibieel
26 Dec 2022, 00:54
Forum: Gaming Help (v1)
Topic: ControlClick doesnt work
Replies: 2
Views: 411

ControlClick doesnt work

I am not able to use ControlClick in the client of this game:
https://avatarcross.world/

Click works normally, but the X,Y coordinates don't work. regardless of the values of the parameters X,Y it clicks on the position where my cursor is.

is there any way to fix this?
by ibieel
21 Dec 2022, 20:07
Forum: Ask for Help (v1)
Topic: help with a function to read all ini variables
Replies: 12
Views: 795

Re: help with a function to read all ini variables

Try: iniread, oVar, test43210.ini, section1 for x,y in strsplit(oVar,"`n") { tmp1 := strsplit(y,"=").1 tmp2 := strsplit(y,"=").2 %tmp1% := tmp2 } msgbox % var13 it seems that iniRead has a limit of 65720 characters, is there a way to increase this limit? Hi, ibieel. Variables that are read in an .i...
by ibieel
21 Dec 2022, 15:17
Forum: Ask for Help (v1)
Topic: help with a function to read all ini variables
Replies: 12
Views: 795

Re: help with a function to read all ini variables

flyingDman wrote:
16 Dec 2022, 16:57
Try:

Code: Select all

iniread, oVar, test43210.ini, section1
for x,y in strsplit(oVar,"`n")
	{
	tmp1 := strsplit(y,"=").1
	tmp2 := strsplit(y,"=").2
	%tmp1% := tmp2
	}

msgbox % var13
it seems that iniRead has a limit of 65720 characters, is there a way to increase this limit?
by ibieel
16 Dec 2022, 16:37
Forum: Ask for Help (v1)
Topic: help with a function to read all ini variables
Replies: 12
Views: 795

help with a function to read all ini variables

hey guys, could you help me to read all the variables from an .ini file the variables are not always the same, it can change, but the section is always the same. Is there any script/function that I can read all the variables of a section in ini file? INI EXAMPLE: [Section1] Var11=test Var13=testq Va...

Go to advanced search