Search found 55 matches

by sobuj53
17 May 2021, 03:23
Forum: Ask for Help (v1)
Topic: Sending keystrokes to a background process (hidden)
Replies: 27
Views: 20619

Re: Sending keystrokes to a background process (hidden)

- OK I have a solution. This code was working great but OBS has recently changed its tray icon class name that's why the script was not working. After a very long time with the help of winlister https://www.nirsoft.net/utils/winlister.html I was finally able to get the class name. Here is the worki...
by sobuj53
11 Apr 2021, 16:30
Forum: Scripts and Functions (v1)
Topic: Using Google Translate to automate text translation
Replies: 228
Views: 99266

Re: Using Google Translate to automate text translation

garry thank you very much. I was actually trying to modify your script but, I confused myself with variable tl1 . I thought it was t11 :D . Anyway here is a modified version that will take source language and To language argument and return translation accordingly. ;- https://www.autohotkey.com/boa...
by sobuj53
11 Apr 2021, 14:56
Forum: Scripts and Functions (v1)
Topic: Using Google Translate to automate text translation
Replies: 228
Views: 99266

Re: Using Google Translate to automate text translation

@garry
Thank you for your quick response however I'm getting this error,
Image
by sobuj53
11 Apr 2021, 10:25
Forum: Scripts and Functions (v1)
Topic: Using Google Translate to automate text translation
Replies: 228
Views: 99266

Re: Using Google Translate to automate text translation

@garry I've one request. Please add a option to select source language, sometimes google can't detect what is the source language, eg fast in Deutsch = nearly, but if we select auto then google will fail at detecting the source language.
by sobuj53
08 Jan 2021, 05:53
Forum: Ask for Help (v1)
Topic: Sending keystrokes to a background process (hidden)
Replies: 27
Views: 20619

Re: Sending keystrokes to a background process (hidden)

- OK I have a solution. q:: ;obs studio - toggle hide/show window DetectHiddenWindows, On PostMessage, 0x8065, 0, 0x400,, ahk_class QTrayIconMessageWindowClass ;WM_USER := 0x400 return w:: ;obs studio - hide window DetectHiddenWindows, On WinGet, hWnd, ID, OBS ahk_class Qt5QWindowIcon if DllCall("u...
by sobuj53
24 Dec 2020, 14:01
Forum: Ask for Help (v1)
Topic: Call another hotkey
Replies: 8
Views: 1543

Re: Call another hotkey

Thank you so much for going that far, really appreciate it. I also share the same feelings. I'm actually a big fan and long time user of ClipJump . But it's abandoned and I'm having some issues lately with some application, which I use very frequently :cry: . Anyway I also uninstalled ClipClip and t...
by sobuj53
24 Dec 2020, 10:59
Forum: Ask for Help (v1)
Topic: Call another hotkey
Replies: 8
Views: 1543

Re: Call another hotkey

Thank you for your reply. The only reason I'm trying to use AHK to redirect the shortcut is to use default Ctrl+V key for pasting using ClipClip. If I set Ctrl+V in ClipClip for pasting it will miss behave unfortunately. That's why I thought what if I remap Ctrl+V as the desired shortcut.... I've fo...
by sobuj53
24 Dec 2020, 08:51
Forum: Ask for Help (v1)
Topic: Call another hotkey
Replies: 8
Views: 1543

Re: Call another hotkey

Thank you for your reply. The program does allow to change it's shortcut and I've already tried several combination. Like I tried Ctrl+Alt+W, The issue is the menu pops up but it also sends Alt+W at the end. Please see the below video,
by sobuj53
24 Dec 2020, 07:33
Forum: Ask for Help (v1)
Topic: Call another hotkey
Replies: 8
Views: 1543

Re: Call another hotkey

Hi thank you for your reply. I've tried what you suggested it was creating a loop like, when I pressed Ctrl+V to invoke Ctrl+Alt+V it was also invoking Alt+V and also keeping Ctrl, Alt and V key pressed down. I tried $^v:: SetKeyDelay, -1 ; 0 KeyWait, Control KeyWait, v sendinput, ^!v return but sam...
by sobuj53
23 Dec 2020, 03:20
Forum: Ask for Help (v1)
Topic: Call another hotkey
Replies: 8
Views: 1543

Call another hotkey

Hello, I use ClipClip (a windows clipboard management software). The default shortcut for showing paste menu is Ctrl+Alt+V. I'm trying to override Ctrl+V with Ctlr+Alt+V, so far I've tried 1. ^v::^!v 2. ^v::send, ^!v 3. ^v:: SetKeyDelay, -1 ; 0 KeyWait, Control KeyWait, v sendinput, ^!v return 4. $^...
by sobuj53
19 Dec 2020, 13:22
Forum: Scripts and Functions (v1)
Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
Replies: 235
Views: 140795

Re: Need help for alternate use

Thank you very much for making this brilliant script. :clap: My question today is about modifying this script for an alternate use. I have an excel table that will be my 'wordlist' and I would like to use autocomplete to find matches from this wordlist only. Is this something that will require any ...
by sobuj53
04 Dec 2020, 00:28
Forum: Ask for Help (v1)
Topic: Sending keystrokes to a background process (hidden)
Replies: 27
Views: 20619

Re: Sending keystrokes to a background process (hidden)

- OK I have a solution. q:: ;obs studio - toggle hide/show window DetectHiddenWindows, On PostMessage, 0x8065, 0, 0x400,, ahk_class QTrayIconMessageWindowClass ;WM_USER := 0x400 return w:: ;obs studio - hide window DetectHiddenWindows, On WinGet, hWnd, ID, OBS ahk_class Qt5QWindowIcon if DllCall("u...
by sobuj53
27 Sep 2020, 09:55
Forum: Scripts and Functions (v1)
Topic: TypingAid v2.22.0 - Word AutoCompletion Utility
Replies: 235
Views: 140795

Re: TypingAid v2.22.0 - Word AutoCompletion Utility

Hello @Maniac,
Thanks for this software. It's really helping me a lot while typing. I'm facing a little bit of bug and created an issue on github, https://github.com/ManiacDC/TypingAid/issues/97.
Hope you'll have time to take a peek at it :).
by sobuj53
13 Aug 2020, 02:01
Forum: Ask for Help (v1)
Topic: Check if a program running in System tray
Replies: 2
Views: 2274

Re: Check if a program running in System tray

Thank you for your reply. I've obtained those process name using your mentioned method :D . Regarding batch file, I do have a batch script for that purpose, @echo off set "ProcessLocation=C:\"Program Files"\Synaptics\SynTP\SynTPEnh.exe" taskkill -f -im SynTPEnh.exe start %ProcessLocation% but like I...
by sobuj53
13 Aug 2020, 01:17
Forum: Ask for Help (v1)
Topic: Check if a program running in System tray
Replies: 2
Views: 2274

Check if a program running in System tray

Hello, My "Synaptics Pointing Device" crushes frequently which then lead me to limited functionality of my touch pad. My goal is to check if the program has crushed or not, and if crushed then start it automatically. "'Synaptics Pointing Device" has 3 Windows process, 1. SynTPEnh.exe Synaptics Touch...
by sobuj53
13 Aug 2020, 00:24
Forum: Wish List
Topic: We want AHK for Linux!
Replies: 78
Views: 62968

Re: We want AHK for Linux!

This is a great moment. Been waiting for this to happen for a long time.
by sobuj53
27 May 2020, 00:56
Forum: Ask for Help (v1)
Topic: List all open and visible window (Alt+Tab) in windwos 10 Topic is solved
Replies: 27
Views: 8429

Re: List all open and visible window (Alt+Tab) in windwos 10 Topic is solved

I understand this is not what you want but I've created a somewhat similar script, where a dropdown with list of open window are shown. ;Ctrl+Shfit+D to activate ^+D:: DetectHiddenWindows, Off ; This will be the GUI name WindArray := {} SysGet, OutputVar, MonitorCount WinName = Bring Open Window On ...
by sobuj53
05 May 2020, 06:58
Forum: Ask for Help (v1)
Topic: Turn off display (laptop)
Replies: 0
Views: 1247

Turn off display (laptop)

Greetings, I've a AHK script that I use to turn off my laptop display, ; Ctrl+F1 to turn off display ; esc to turn on again ^F1:: KeyWait, CTRL KeyWait, F1 ;KeyWait, SHIFT KeyWait, Escape Gui,Color,0x000000 Gui,-Caption Gui,Show, NA w%A_ScreenWidth% h%A_ScreenHeight% Loop { If GetKeyState("Escape","...
by sobuj53
27 Nov 2019, 12:40
Forum: Wish List
Topic: We want AHK for Linux!
Replies: 78
Views: 62968

Re: We want AHK for Linux!

@SL5 Hey, so is it possible to use AHK in linux? To be honest AHK is the only think I miss since I switched from Windows. I really wish that there would be a alternative/similar thing in linux too.

Go to advanced search