Search found 57 matches

by necomerx
12 Feb 2022, 08:25
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3514

Re: Possible issue: compiling with password in newer versions

Understood. I will do that when i will start to use AHK_H, for now i'm using L and just putting an inputbox in the script does the trick. Thanks again HotKeyIt!
by necomerx
12 Feb 2022, 01:24
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3514

Re: Possible issue: compiling with password in newer versions

The script that i used was a MsgBox script. When i enable the encryption and leave alone the default password it work like there was no encryption but if i enter my own password, i get the error.
by necomerx
11 Feb 2022, 09:42
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3514

Re: Possible issue: compiling with password in newer versions

I try it with encryption but always get this error:
---------------------------
Case.exe
---------------------------
Line Text: PKaL#���
Error: This line does not contain a recognized action.

The program will exit.
---------------------------
OK
---------------------------
by necomerx
11 Feb 2022, 09:22
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3514

Re: Possible issue: compiling with password in newer versions

Thanks, now download work without warning. I'll will try to compile with encryption and report back.
by necomerx
11 Feb 2022, 08:35
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3514

Re: Possible issue: compiling with password in newer versions

Please try latest version (1.1.33.10) Thanks HotKeyIt, I'm trying to download this latest version on github https://github.com/HotKeyIt/ahkdll-v1-release but keep getting warning with my browsers and antivirus about virus. I know that it can be a false positive but i ask to be sure since i didn't g...
by necomerx
11 Feb 2022, 06:36
Forum: Ask for Help
Topic: Possible issue: compiling with password in newer versions
Replies: 11
Views: 3514

Re: Possible issue: compiling with password in newer versions

Thanks for the feedback, this has been fixed now. Hi HotKeyIt, i have the same problem with the version v1.1.33.02 after compiling with the encryption with my own password. Without encryption it work fine. Do you have an idea on how to fix the error? here is the error that i have: -----------------...
by necomerx
07 Aug 2021, 00:52
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1088
Views: 584922

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

Hi,
Is it possible to find text or more precisely match text found on 2 image captures with Findtext?
I capture 2 images of a text or numbers and i want to write some actions if for exemple the word "monday" or "52" is matched. Is that possible ?
by necomerx
04 Jul 2021, 15:43
Forum: Ask for Help (v1)
Topic: Are there labels for the default icon menu items? Topic is solved
Replies: 16
Views: 1208

Re: Are there labels for the default icon menu items? Topic is solved

After many hours of trials, i finally manage to make it work properly, it can seems easy but this one was really tough for me. I could not keep your script boiler because of the timer, the gui was keeping the focus so it was difficult to work on other windows when the script was suspended. I still n...
by necomerx
04 Jul 2021, 10:42
Forum: Ask for Help (v1)
Topic: Are there labels for the default icon menu items? Topic is solved
Replies: 16
Views: 1208

Re: Are there labels for the default icon menu items? Topic is solved

Yep right and that's why i'm confused because i don't understand for the moment how i can make the code to work with my gui.
by necomerx
04 Jul 2021, 07:13
Forum: Ask for Help (v1)
Topic: Are there labels for the default icon menu items? Topic is solved
Replies: 16
Views: 1208

Re: Are there labels for the default icon menu items? Topic is solved

Yes thanks, the lexikos' code is integrated as you suggest and is working fine but with my gui, it is not working properly: when i suspend the script, the gui shows up fine but when i unsuspend it, it is not destroyed, here is the code : OnMessage(0x111, Func("Receive_WM_COMMAND")) Receive_WM_COMMAN...
by necomerx
04 Jul 2021, 06:07
Forum: Ask for Help (v1)
Topic: Are there labels for the default icon menu items? Topic is solved
Replies: 16
Views: 1208

Re: Are there labels for the default icon menu items? Topic is solved

Yes i was integrating it wrong first when i put it after the auto execute section (i think i was so tired!). But when i put your code in the loop, i think i removed the Settimer, the label and the return lines, so it was working fine, but yes how you explain it is the proper way to do it and all is ...
by necomerx
04 Jul 2021, 04:05
Forum: Ask for Help (v1)
Topic: Are there labels for the default icon menu items? Topic is solved
Replies: 16
Views: 1208

Re: Are there labels for the default icon menu items? Topic is solved

Thanks you lexikos also for clarifying and your great help! I was wondering for quite some times how it will be possible to interact with the standard menu items, and your detailed reply answer many of my questions! Your codes work well, also sorry boiler your code work fine in the auto-execute sect...
by necomerx
04 Jul 2021, 04:00
Forum: Ask for Help (v1)
Topic: a hotkey links to another hotkey? Topic is solved
Replies: 12
Views: 652

Re: a hotkey links to another hotkey? Topic is solved

surfactant wrote:
04 Jul 2021, 03:10
@necomerx

Code: Select all

^+a::
Send, XXX
return
LWin::
SendInput, ^+a
return
With your codes above, pressing LWin gives nothing. Thanks!
That's strange, it is working for me... Did you exit your first script and only run this one? Because if the two scripts using LWin are running the hotkey won't work.
by necomerx
04 Jul 2021, 03:01
Forum: Ask for Help (v1)
Topic: a hotkey links to another hotkey? Topic is solved
Replies: 12
Views: 652

Re: a hotkey links to another hotkey? Topic is solved

Hi, try this in on script:

Code: Select all

^+a::
Send, XXX
return
LWin::
SendInput, ^+a
return
by necomerx
03 Jul 2021, 21:15
Forum: Ask for Help (v1)
Topic: Are there labels for the default icon menu items? Topic is solved
Replies: 16
Views: 1208

Re: Are there labels for the default icon menu items? Topic is solved

Thanks you boiler for clarifying and your help! i'm gonna check that now! Edit: As i though It is not working unfortunately with my script witch has a loop, but it is working for a new script. So the default menu don't have variables to acces its different item, only possible for custom menu i guess...
by necomerx
03 Jul 2021, 20:48
Forum: Ask for Help (v1)
Topic: Are there labels for the default icon menu items? Topic is solved
Replies: 16
Views: 1208

Are there labels for the default icon menu items? Topic is solved

Hi everyone,
i want to write a script that will notify me when i suspend the script with the "Suspend Hotkeys" item on the default menu. Is there a label for that item?
by necomerx
12 Jun 2021, 12:28
Forum: Ask for Help (v1)
Topic: ahk file runs and deletes itself
Replies: 1
Views: 165

Re: ahk file runs and deletes itself

Hi buddy,
It was probably eaten by your antivirus that put it into quarantine. Check you antivirus to restore it and put an exception.
by necomerx
27 May 2021, 04:00
Forum: Ask for Help (v1)
Topic: How to make a picture's transparent background not visible when layered on a parent window?
Replies: 8
Views: 543

Re: How to make a picture's transparent background not visible when layered on a parent window?

Yes boiler, it seems like this doesn't work with all windows, but i'm gonna take a look at the "sneak around" posted by WatsonEnterprises. Thanks also for your help WatsonEnterprises, your code doesn't work unfortunately, i will take a look at the post you provided.
by necomerx
26 May 2021, 15:37
Forum: Ask for Help (v1)
Topic: How to make a picture's transparent background not visible when layered on a parent window?
Replies: 8
Views: 543

Re: How to make a picture's transparent background not visible when layered on a parent window?

This worked for me with it displayed in MS Paint. It should work with any window. gui, color, white gui, add, picture, h-1 BackgroundTrans, Sun.png winget, ID, ID, Trees0 gui, -Caption -border parent%ID% hwndGuiID winset, TransColor, white, ahk_id %GuiID% gui, show return Esc::ExitApp Ok thanks, So...

Go to advanced search