Search found 16 matches

by kenji
27 May 2022, 19:43
Forum: Scripts and Functions (v1)
Topic: Radial menu scripts
Replies: 338
Views: 179167

Re: Radial menu scripts

Hi guys, girls and Learning-one. First thank u so much for the RM app. ^^ Is amazing :D Second :D i can now hide the main radial menu. when selecting sub menus, (i found it on prev topic, page 88 i think) Third :D i have been working on a simple but colorfull skin. i want to share it with everyone ...
by kenji
23 May 2022, 21:03
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 325
Views: 115297

Re: MouseGestureL

Can you add an ignore target based on the program path For example, E:\Games\Steam Go to Targets>ignored Targets and in the Type select File Name and use Helper or enter the application name in the value area like - steam.exe this will block any gesture from triggering while steam application is in...
by kenji
22 May 2022, 05:53
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 325
Views: 115297

Re: MouseGestureL

is there a way to achieve this ... Edge and corner recognition. but i want a modified version. where when cursor reaches border of screen and when futher cursor is pressed against that border then an action of that gesture should execute. so inorder to still maintain the normal behavior of elements ...
by kenji
21 May 2022, 00:33
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 325
Views: 115297

Re: MouseGestureL

i don't know that much i will have to read the documentation and all pages of this forum to understand it fully, but in the meantime can you please help with this - i want to perform smiliar thing to - swiping with three fingers on touch pad to switch application by this method - hold wheel down ( s...
by kenji
12 Dec 2021, 10:27
Forum: Ask for Help (v1)
Topic: My Script automatically exits after some time. Been happening for 4 days.
Replies: 1
Views: 334

My Script automatically exits after some time. Been happening for 4 days.

i combined a lot of codes i got from here and there. the script runs in elevated state because of a part of code which needs it. #NoEnv #Warn #include <BrightnessSetter> #SingleInstance, Force SendMode Input SetWorkingDir, %A_ScriptDir% >^PgDn::BrightnessSetter.SetBrightness(-10) >^PgUp::BrightnessS...
by kenji
07 Dec 2021, 08:47
Forum: Scripts and Functions (v1)
Topic: Set laptop brightness & show Win 10's native OSD
Replies: 17
Views: 36997

Re: Set laptop brightness & show Win 10's native OSD

the thing i found if i lauch the script using vscode having the plugin autohotkey plus plus it works but why ? Could be a permissions issue. Try to run your script 'as admin'. VScode was running it with 64 autohotkey and explorer was running it with 32 bit one.. i simply switch my autohotkey to 64 ...
by kenji
07 Dec 2021, 04:06
Forum: Scripts and Functions (v1)
Topic: Set laptop brightness & show Win 10's native OSD
Replies: 17
Views: 36997

Re: Set laptop brightness & show Win 10's native OSD

This does not seem to work with x86 AHK at least on x64 OS. I am making a script that could eventually be compiled to both x86 and x64 but while x64 runs fine x86 just shows the OSD and nothing changes. did you found any solution ? i am on x86 AHK and on x64 OS.. the thing i found if i lauch the sc...
by kenji
06 Dec 2021, 10:32
Forum: Ask for Help (v1)
Topic: Launch screen saver and block all input except a special key. Topic is solved
Replies: 1
Views: 284

Launch screen saver and block all input except a special key. Topic is solved

Saw this code on archived forums - https://www.autohotkey.com/board/topic/95543-activate-screen-saver-with-scrolllock/ (note- the script needs to be run as admin to block the input.) The code does not work where i have to press scroll lock key again to unlock the input , i had to use ctrl+alt+del to...
by kenji
05 Dec 2021, 14:49
Forum: Ask for Help (v1)
Topic: Script work if lauched through VS Code but does not work when launched through normally. Topic is solved
Replies: 4
Views: 735

Re: Script work if lauched through VS Code but does not work when launched through normally. Topic is solved

mikeyww wrote:
05 Dec 2021, 14:40
yuup it works. Thanks for this scrip.
the thing is it does not show the slide UI..
but if i did not find the answer than i will use this version.
by kenji
05 Dec 2021, 14:32
Forum: Ask for Help (v1)
Topic: Script work if lauched through VS Code but does not work when launched through normally. Topic is solved
Replies: 4
Views: 735

Script work if lauched through VS Code but does not work when launched through normally. Topic is solved

this is library - [https://gist.github.com/qwerty12/4b3f41eb61724cd9e8f2bb5cc15c33c2][/qwerty12/BrightnessSetter.ahk] this is the code - #SingleInstance, Force SendMode Input SetWorkingDir, %A_ScriptDir% #include <BrightnessSetter> PgUp::BrightnessSetter.SetBrightness(10) PgDn::BrightnessSetter.SetB...
by kenji
13 Nov 2021, 06:58
Forum: Ask for Help (v1)
Topic: How to get values for PostMessage to maximizing tray apllication ?
Replies: 1
Views: 324

How to get values for PostMessage to maximizing tray apllication ?

I want to maximize the application which are hidden in tray. i tried launching there exe directly but it has a delay of atleast 3 seconds till window show up. but i saw some comments where using postmessage instead of running a exe it just sends the application a message for maximizing it. Sadly it ...
by kenji
08 Nov 2021, 23:42
Forum: Ask for Help (v1)
Topic: Hotstrings with multiple letters
Replies: 11
Views: 2446

Re: Hotstrings with multiple letters

I would just use Switch/Case as I showed in my code instead of a bunch of if/else statements to make it more compact and readable. need help, can you look at this code... the me-launches microsoft edge .. and mep-should lauch microsoft edge private .. but it always launches me ... even mep was pres...
by kenji
08 Nov 2021, 14:28
Forum: Ask for Help (v1)
Topic: Hotstrings with multiple letters
Replies: 11
Views: 2446

Re: Hotstrings with multiple letters

It’s not that you weren’t clear. You were very specific in what you asked for, and now you are clearly asking for something very different. You can ask specific questions about what you don’t understand or where you are getting stuck. Here's my Code >!space:: Input, UserInput, T0.7 L4, {enter}.{esc...
by kenji
08 Nov 2021, 12:44
Forum: Ask for Help (v1)
Topic: Hotstrings with multiple letters
Replies: 11
Views: 2446

Re: Hotstrings with multiple letters

Yes... $^a:: Input, Key, L1 M T0.5 if (ErrorLevel = "Timeout") ; another key wasn't pressed in time Send, ^a ; send ^a by itself so it's still usable else Switch Key { Case Chr(2): MsgBox, ^ab was pressed Case Chr(3): MsgBox, ^ac was pressed Case Chr(4): MsgBox, ^ad was pressed } return Sorry my ba...
by kenji
08 Nov 2021, 03:23
Forum: Ask for Help (v1)
Topic: Hotstrings with multiple letters
Replies: 11
Views: 2446

Re: Hotstrings with multiple letters

You can make a hotkey with ^a , and the subroutine for that hotkey would then check to see if b is pressed (ensuring that Ctrl is still down, if desired) within a certain amount of time, then proceed accordingly. Something like this: $^a:: KeyWait, b, DT0.5 ; wait a half second to see if b is press...

Go to advanced search