topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Monday April 6, 2026, 4:22 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 33next
126
Find And Run Robot / Re: FARR - Suggested Hotkey
« Last post by anandcoral on January 24, 2020, 05:37 AM »
For what it's worth Win+space is used to switch keyboard language on Win10
Ahh..now I see.
I tried Win+space in my office computer (not laptop) and it popped "US" and "UK" keyboard option.
So FARR was right after all.

Regards,

Anand
127
Find And Run Robot / Re: FARR - Suggested Hotkey
« Last post by anandcoral on January 23, 2020, 01:12 PM »
Yes, caps lock is working, so can use it. It is just that my laptop caps lock has a light which flickers on/off when used.
Ctrl+space is used in my text editor to list all syntax words for function/command.
Alt+space is rather free, but have this habit of using it instead of mouse to move/resize windows.

Found win+space is not used anywhere and also does not trigger anything.  The best Windows 10 keyboard shortcuts also dos no mentions it.  But FARR says unavailable.

2020-01-24_003137.png

Went for Win+Alt+space.
All keys are near each other and does not require much hand movement.

Thanks for all the suggestions.

Regards,

Anand
128
Find And Run Robot / Re: FARR - Suggested Hotkey
« Last post by anandcoral on January 23, 2020, 02:24 AM »
My laptop keyboard

IMG_20200123_095114.jpg

F-keys are used extensively by my code/text editor.

The ` key is NOT free, I meant to say, as it is required for AHK codes.

Ctrl+space is also used by the editor

Alt+space is free but I use it for moving window, by opening the system menu.

Looks like some Win+Alt+space may do, have to try that.

Regards,

Anand

129
Find And Run Robot / Re: FARR - Suggested Hotkey
« Last post by anandcoral on January 22, 2020, 06:05 AM »
Will provide the image of actual keyboard tonight, from home.

Regards,

Anand
130
Find And Run Robot / Re: FARR - Suggested Hotkey
« Last post by anandcoral on January 22, 2020, 05:46 AM »
But ` key is used in AHK for special keys in string like `n for line break.

Any other suggestion ?

Regards,

Anand
131
Find And Run Robot / FARR - Suggested Hotkey
« Last post by anandcoral on January 22, 2020, 05:25 AM »
I use normal (PC) keyboard which has 'break' key which I use to launch FARR.
Now my laptop (Dell) do not have 'break' key.

My query is, what key combination is suggested for launching FARR ?
Specially what key combination are used by members with no break key ?

Some key combination are used for different purpose by different programs and it creates problem.

Regards,

Anand
132
** in no way i do mean that AHK is virus, but the abilities are in such a wide range, doing positive or negative things...
Ahh..do not demean C++ and all weather VB6 :)
They have the power to surpass AHK in all pos/neg departments. It is only that coding in AHK is easy and creates smallest (comparatively) exe. And yes Ant-Virus do respect MS created or adopted exe(s).

One good example is SysInternals. In the past, their psexec.exe tool that can be used to execute code on remote machine, was detected as Virus by some Antivirus programs, but today, when SysInternals is a part of Microsoft, All Antiviruses show it’s clean, as
you can see from this VirusTotal report.

Read more at http://blog.nirsoft....to-small-developers/
And yes DC also tried its best for AHK https://www.donation...forum/?topic=15210.0

Regards,

Anand
133
Yes, I have also faced many problems using AVG along with irritating focus capturing popups, and have stopped all and use only Win Defender now.

So compile is passed but results of VirusTotal is problem for us now  >:(

Regards,

Anand
134
Well for last few days, I am trying different combination of making exe to satisfy VirusTotal.

Refer https://www.donation....msg434859#msg434859 of my NANY 2020 app Apps You Forgot.

No matter how I code or create the exe from AutoHotKey, VirusTotal is always marking 4 to 9 engines detected virus. I checked my earlier NANY apps and they are also marked now more than 10 engines.

Even without any exe packer, they are marked as virus warnings. I even checked many packers, older and newer, for confirmation, but all are marked not okay.

Then I checked ISMONISM https://www.donation....msg434768#msg434768, which Winkie is providing source code also (many thanks to him for this kind gesture), knowing very well that there is no bad code (we can see the codes) and it is non-packed exe. But alas it is also marked 4 engines virus !
https://www.virustot...db0405bba0/detection
I used Winkie's code as it is also written in AutoHotKey and source code is also provided for all to see.

So what should I do ?

I normally mention below in my app's websites and continue, as otherwise I can not create exe in AutoHotKey now.

Anti-Virus reports malware (what to do?) :

Delete the exe and it's folder. There is nothing we can do as this is false alert and we do not have resource to request all Anti-Virus companies to update their database. Similar problem is faced by small developers worldwide, check below links,

Nir's Blog

You can see the last scan result of the exe from Virus Total web site and will find that major Anti-Virus report it as clean.

I am adding few features to my app "Apps You Forgot", but devoted more time to understand why VirusTotal  is jumping on simple AutoHotKey codes. Looks like we have to live with it.

Regards,

Anand
135
Updated Autohotkey to Version 1.1.32.00, and it is using png files as tray icon now  :D

Regards,

Anand
136
The .png files you've attached to your previous post are working fine as well.

AHK v1.1.32.00
Ahh..mine is still older version 1.0.48.05
Looks like I need to upgrade, as I am missing many new features of it.

Regards,

Anand
137
pngs gives error so attached ico files
The three .png files I'm using here are working perfectly fine...
I got this error

---------------------------
ahk tray icon that shows if wifi connection is 2.4 or 5 GHz.ahk
---------------------------
Error:  Can't load icon.

Specifically: E:\TempE\_grey.png

Line#
016: RegExMatch(result, "im)channel\s+:\s*(?P<Channel>\d{1,3})", match) 
018: if (matchChannel >= 1 && matchChannel <= 14) 
019: Menu,Tray,Icon,%A_ScriptDir%\_green.png
020: Else
020: if (matchChannel >= 34) 
021: Menu,Tray,Icon,%A_ScriptDir%\_red.png
022: Else
---> 023: Menu,Tray,Icon,%A_ScriptDir%\_grey.png
025: Return
029: {
031: cmd := (params) ? cmd . " " . params : cmd
033: DllCall("CreatePipe", "Ptr*", hStdInRd , "Ptr*", hStdInWr , "Uint", 0, "Uint", 0) 
034: DllCall("CreatePipe", "Ptr*", hStdOutRd, "Ptr*", hStdOutWr, "Uint", 0, "Uint", 0) 
035: DllCall("SetHandleInformation", "Ptr", hStdInRd , "Uint", 1, "Uint", 1) 
036: DllCall("SetHandleInformation", "Ptr", hStdOutWr, "Uint", 1, "Uint", 1) 

The current thread will exit.
---------------------------
OK   
---------------------------

Changing .png to .ico and using the ico files, it worked correctly. Maybe autohotkey version problem. There is no problem/error in your code.
Thanks for it.

Regards,

Anand
138
great highend01  :Thmbsup:

Attached are the pngs, if required by anyone  :)

_red.png  _green.png  _grey.png

[EDIT] pngs gives error so attached ico files. Please change .png to .ico in ahk by highend01.



Regards,

Anand
139
Official Announcements / Re: DonationCoder financial summary year 2019
« Last post by anandcoral on January 16, 2020, 04:15 AM »
Maybe 2020 is time for another one...
Agree.
Thanks for sharing information mouser.

Regards,

Anand
140
N.A.N.Y. 2020 / Re: My Ip Program
« Last post by anandcoral on January 13, 2020, 04:19 AM »
Looks useful.

Regards,

Anand
141
N.A.N.Y. 2020 / Re: NANY 2020 Wrap-up
« Last post by anandcoral on January 12, 2020, 04:38 AM »
I don't know why this app wasn't submitted as part of NANY, dcmember r0bertdenir0's app Pandemonium:
May be he did not get proper time at the end. Maybe knock on his door (personal message) will give some response.

Regards,

Anand
142
N.A.N.Y. 2020 / Re: NANY 2020 Release: Apps You Forgot
« Last post by anandcoral on January 07, 2020, 12:40 PM »
Apps You Forgot Updated to 1.0.1. See the first post for details.

Missing App list working ok.
Forgot App list shows days accessed ago, have check in different combination to confirm if ok.
Setting to give program path to search for exe working ok.

Apps You Forgot creates text file with prefix AYF_ which contains all the scanned lnk and exe files. You can check them for verification.

Feedback awaited.

IMPORTANT: I checked with various combination of upx and non-upx but virustotal always gave 4/5 warnings. So decided to keep as it is. Though they are false positive, but if you prefer, do not use the app.

Regards,

Anand
143
N.A.N.Y. 2020 / Re: Systemus
« Last post by anandcoral on January 02, 2020, 05:43 AM »
 :Thmbsup:

to both of you  :)

Regards,

Anand
144
N.A.N.Y. 2020 / Re: NANY 2020 Release: Apps You Forgot
« Last post by anandcoral on January 01, 2020, 01:55 PM »
Yes. I stopped too, but looks like it came in new autohotkey installation.

Will have a look into it.

Regards

Anand
145
N.A.N.Y. 2020 / Re: NANY 2020 Release: Apps You Forgot
« Last post by anandcoral on January 01, 2020, 12:52 PM »
Hmm..looks like upx problem.
Will check.

Regards

Anand
146
Living Room / Re: Happy New Year 2020 -- Soon!
« Last post by anandcoral on January 01, 2020, 03:59 AM »
Happy New Year 2020

Regards,

Anand
147
N.A.N.Y. 2020 / NANY 2020 Release: Apps You Forgot
« Last post by anandcoral on December 31, 2019, 03:00 PM »
NANY 2019 Entry Information

Application Name Apps You Forgot
Version 1.0.1
Short Description Apps (Programs) You Forgot, shows you the program (exe) files which are in your program folder but are NOT in your start menu. It also shows programs which you are not using for a long time i.e. you forgot about them.
Web Page in progress
Download Link attached here

Description
Apps (Programs) You Forgot, shows you the program (exe) files which are in your program folder but are NOT in your start menu.
It also shows programs which you are not using for a long time i.e. you forgot about them.

Features

Complete now with fine tuning remaining based on feedback. More features will be added in future.
Click scan to scan the folders given in settings (defaults folders added automatically based on 32 bit and 64 bit system).
All scanning is done in background.
You can use the buttons while it is scanning.
Double clink on the exe name to execute it.

Screenshots

2020-01-01_022847.png


Regards,

Anand
148
Living Room / Re: Merry Christmas to All
« Last post by anandcoral on December 26, 2019, 04:26 AM »
Merry Christmas and Happy Coding and Sharing Season to all.

Regards,

Anand
149
N.A.N.Y. 2020 / Re: NANY 2020: quick generator peek
« Last post by anandcoral on December 25, 2019, 11:55 AM »
remember, I'll be watching you.
Happy Christmas!   :D

Thanks, you made my day :)

there is such a thing as omnipresence, you know.

Yes, and I have seen HIS miracle in my life. I walk in his faith and am still walking, even after that dreadful fall in bathroom (check my thread in DC) which could have made me bedridden for ever, as per the doctor. My spinal injury was saved by few millimeters.

I pray to HIM to protect all his children and show the correct path.
 
BTW, I read Forum message in rss feed and reply only where required. And I do not have Facebook, Twitter etc. They are luxurious items  for rich (with free time) people :)

Regards,

Anand
150
N.A.N.Y. 2020 / Re: NANY 2020: quick generator peek
« Last post by anandcoral on December 25, 2019, 03:27 AM »
By the way, is Paste Text Like abandoned for good?
No. None of my pet apps are abandoned. They are like my children.
Only problem is that the father is heavily under pressure of bread and butter jobs.

The one NANY 2020 I am working is not getting full times as desired, due to my work pressure. I still have hope that Almighty will give me free time from all these "must-do" works.

Regards,

Anand
Pages: prev1 2 3 4 5 [6] 7 8 9 10 11 ... 33next