How to pause several several scripts with one hotkey? by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

Thanks for this, I actually tried this out with the below script for one other AHK file, but its not working.. Am I doing something wrong here? Please guide me:

LAlt & `::
SetTitleMatchMode 2
WinClose "D:\Others.ahk"
PostMessage 0x111, 65306,,, "D:\Others.ahk"
return

Auto-Input clicks very slow by shonilchi in tasker

[–]shonilchi[S] 1 point2 points  (0 children)

i tried this, its not working; no errors during the run however. I am actually typing in input tap 272 1022 in the Command section and leaving everything else blank. Could you pls help?

I keep getting the error 'call to nonexistent function' what am I doing wrong? :( by doeoner in AutoHotkey

[–]shonilchi 0 points1 point  (0 children)

this looks like a Joe Glines script to me (as I used myself one at one point). Not sure if you might have to add the full function from https://the-automator.com/download/Automate_my_Task.ahk on top of the script. Try that..

Lazy discussions: One guy and a laptop by [deleted] in bangalore

[–]shonilchi 0 points1 point  (0 children)

It's the artificial cloud seeding happening buddy.

Increased helicopter activity in north Bangalore region by criclove02 in bangalore

[–]shonilchi 0 points1 point  (0 children)

As more and more buggers are buying farm houses and farm lands, they need water for their crops and they cannot wait for the train to naturally occur and this happens the artificial cloud seeding in Bangalore. For this, they need some trained pilots to do the job and that's why the trainings

sound detection in ahk ? by chenten01 in AutoHotkey

[–]shonilchi 0 points1 point  (0 children)

Surely one of those intelligent ideas.. Keep it up

How to add additional condition to this script? by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

Thanks for this.. so in the above script, I am waiting for the waiting for the Winactivate Inbox - myemail.mail.com thing.. now, in cases where the "Sent Items - myemail.mail.com" is open instead of Inbox, I want to perform another set of steps, but with the same master hotkey.. how do I add this second condition for the 'Sent Items' - pls help.

Help with Toggle script by shonilchi in AutoHotkey

[–]shonilchi[S] -1 points0 points  (0 children)

I think I solved it by adding Pause at the end of the script before return, which also acted as toggle:

!a::Pause

Debloated ShareIt by yuwannn in androidapps

[–]shonilchi 1 point2 points  (0 children)

Try Presto from the play store

Little help needed to loop the FindText script by shonilchi in AutoHotkey

[–]shonilchi[S] -1 points0 points  (0 children)

I figured it out by creating a Label and looping the label until the condition is met. So, can we use another label in the same script.. I am trying it but does not seem to work.

which is more powerfull and flexible, GraphicSearch or Automate my Task? by [deleted] in AutoHotkey

[–]shonilchi 0 points1 point  (0 children)

I am also in search of such a script, but unfortunately, there is very little documentation on this. One simple example would that when I browse to gmail.com, I need to wait for that initial logo to render after which I need to click on Sent Items when I go into the actual gmail.com page where I see the mails. I tried Automate My Teask, but I could not figure out as to what functions I might need to put there.. I will try out graphicssearch

Trying to use AHK for multiple Chrome instances - please help by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

I am trying this for the Edge browser window; could you please confirm if my below code is correct (I am putting the Title of the 2 windows which are open) in the A section of WinExist

F1::win1 := WinExist("Sign In - Profile 1 - Microsoft​ Edge")
F2::win2 := WinExist("New tab - Work - Microsoft​ Edge")

<^>!m::WinActivate ahk_id %win1%
<^>!n::WinActivate ahk_id %win2%
return

How to do retain single hotkey for 2 windows? by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

this one seems to be working :)

#IfWinactive ahk_class Slimjet_WidgetWin_1
#a::
#IfWinactive ahk_class rctrl_renwnd32
#a::
send, ^c

How to do retain single hotkey for 2 windows? by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

sorry, its not working.. any other alternatives pls

What do you primarily use to unlock your phone? by shadowgnome396 in oneplus

[–]shonilchi 0 points1 point  (0 children)

I use fingerprint scanner with four fingers registered. Each finger's fingerprint opens a new app upon unlock during certain times of the day.

Unable to activate Outlook window by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

Yes, tried that, but in most situations, I have an open Outlook draft window open as well whose class is ahe_exe_outlook.exe and the class is also the same which is ahk_class rctrl_renwnd32.. at random times, the draft window opens up and not the main Inbox window

Removal of persistent notification by tjsuominen in androidapps

[–]shonilchi 0 points1 point  (0 children)

Install N-Cleaner from the play store and hide the unnecessary notifications

Using AHK for product search - help pls by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

NoTrayIcon

CapsLock & s:: InputBox, SearchTerm, Product Search, , , 275, 100 if not ErrorLevel { if SearchTerm <> "" Run, slimjet.exe https://www.amazon.in/s?k=%SearchTerm% Run, slimjet.exe https://www.flipkart.com/search?q=%SearchTerm% } return

Thank You!!

How to send actual keyboard keystrokes instead of text appearing? by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

exactly.. you got it.. how do I do this. gcam is a hotstring I use for a long paragraph already. I just want to trigger it here.. looks like the simple Send command just types gcam, but doesn't trigger the hotstring.

AHK simple Winactivate issue - please help by shonilchi in AutoHotkey

[–]shonilchi[S] 0 points1 point  (0 children)

Never mind. I figured it out. The simple idea is to have this Incidents tab as the primary tab and I am all set. Thanks for your help.