Search found 313 matches

by ahklearner
01 Aug 2019, 11:22
Forum: AutoHotkey Development
Topic: AutoV2Script > ChangeOrSuggest V2 code for V1 script Topic is solved
Replies: 17
Views: 6316

Re: AutoV2Script > ChangeOrSuggest V2 code for V1 script Topic is solved

I am greatly an AHK dependent, and I am from a non-programming background, more than writing code I do analyze codes written by others and learn from them doing small changes. Till date, all of our codes are written in v1, if I need to test, learn, and analyze these scripts >>> I cant change codes m...
by ahklearner
01 Aug 2019, 11:14
Forum: Scripts and Functions (v2)
Topic: v1 -> v2 Script Converter
Replies: 184
Views: 83959

Re: v1 -> v2 Script Converter

I am greatly an AHK dependent, and I am from a non-programming background, more than writing code I do analyze codes written by others and learn from them doing small changes. Till date, all of our codes are written in v1, if I need to test, learn, and analyze these scripts >>> I cant change codes m...
by ahklearner
31 Jul 2019, 14:46
Forum: Scripts and Functions (v2)
Topic: v1 -> v2 Script Converter
Replies: 184
Views: 83959

Re: v1 -> v2 Script Converter

just replied to get subscribed to the post :)
by ahklearner
31 Jul 2019, 10:19
Forum: AutoHotkey Development
Topic: AutoV2Script > ChangeOrSuggest V2 code for V1 script Topic is solved
Replies: 17
Views: 6316

Re: AutoV2Script > ChangeOrSuggest V2 code for V1 script Topic is solved

@guest3456 thanks a lot for your time and efforts, please try to update this script time to time, it will be a Big relief for all :)
by ahklearner
31 Jul 2019, 08:05
Forum: AutoHotkey Development
Topic: AutoV2Script > ChangeOrSuggest V2 code for V1 script Topic is solved
Replies: 17
Views: 6316

AutoV2Script > ChangeOrSuggest V2 code for V1 script Topic is solved

Hi Community :wave:

I would like to suggest a script which can read a v1 script and suggest/make syntax changes in accordance with v2.

For example:
var = abc
to
var := "abc"

Thanks in advance for your help and support.
by ahklearner
29 Apr 2019, 10:13
Forum: Forum Issues
Topic: HowTo: Subscribe to only "topic is solved" in Ask for help
Replies: 0
Views: 905

HowTo: Subscribe to only "topic is solved" in Ask for help

Hi all,

I would like to get notification for all the solved topics, is there any way or recommendation ?

Thanks in advance
by ahklearner
13 Feb 2019, 08:58
Forum: Scripts and Functions (v2)
Topic: [AHK v2] Compare Texts and Highlight Differences
Replies: 8
Views: 3946

Re: [AHK v2] Compare Texts and Highlight Differences

was looking for something of this kind very lately, Thank You
by ahklearner
13 Feb 2019, 08:36
Forum: Scripts and Functions (v1)
Topic: HelpText - Hotkey Management Tool
Replies: 4
Views: 1658

Re: HelpText - Hotkey Management Tool

would you mind sharing it, Thank You
by ahklearner
03 Jan 2019, 12:30
Forum: Ask for Help (v1)
Topic: HowTo escape button work normally for all, but do nothing for one app Topic is solved
Replies: 3
Views: 921

HowTo escape button work normally for all, but do nothing for one app Topic is solved

Hi all, After pressing escape, I need: All apps respond normally, but one app "skype" should ignore it. If I assign escape to a func it will only work in that scenario, ignoring its core functions. If I add "~" it will act normally on skype which I dont want. any guidance or help greatly appreciaed....
by ahklearner
06 Oct 2018, 08:51
Forum: Ask for Help (v1)
Topic: Hotstring() question Topic is solved
Replies: 8
Views: 1684

Re: Hotstring() question Topic is solved

This made my day :dance: Thanks :clap: #Persistent #SingleInstance Force MyTxtFile = ( long1|some long text A long2|some long text B long3|some long text C ) for each, Line in StrSplit(MyTxtFile, "`n", "`r") { Arr := StrSplit(Line, "|") Hotstring(":*:" Arr[1], Func("paste").Bind(Arr[2])) } paste(p){...
by ahklearner
06 Oct 2018, 06:02
Forum: Ask for Help (v1)
Topic: Hotstring() question Topic is solved
Replies: 8
Views: 1684

Re: Hotstring() question Topic is solved

Making it dynamic, loading hotstrings from text file ?

with this non ahk users can also benefit it, if we compile it ?
by ahklearner
04 Oct 2018, 05:15
Forum: Ask for Help (v1)
Topic: Hotstring() question Topic is solved
Replies: 8
Views: 1684

Re: Hotstring() question Topic is solved

How to have multiple keywords and snippets #Persistent #SingleInstance Force keyword := "long1" snippet := "some long text A" keyword := "long2" snippet := "some long text B" keyword := "long3" snippet := "some long text C" Hotstring(":*:" keyword, Func("paste").Bind(snippet)) paste(p){ clipboard :...
by ahklearner
02 Oct 2018, 04:32
Forum: Ask for Help (v1)
Topic: Notification for Solved Topics/Posts Only From AskForHelp
Replies: 0
Views: 517

Notification for Solved Topics/Posts Only From AskForHelp

Hi Community :wave:

I was wondering if I can get notifications for solved topics only from AskForHelp.

For learning :)

Is there a way or workaround.

Thanks in advance
by ahklearner
17 Aug 2018, 08:27
Forum: Ask for Help (v1)
Topic: How to pause other hotkeys/hotstrings
Replies: 5
Views: 1497

Re: How to pause other hotkeys/hotstrings

https://autohotkey.com/boards/viewtopic.php?t=27824 IDs 65300-65307 and IDs 65400-65413: ID_TRAY_OPEN := 65300 ID_FILE_RELOADSCRIPT := 65400 ;ID_TRAY_RELOADSCRIPT := 65303 ID_FILE_EDITSCRIPT := 65401 ;ID_TRAY_EDITSCRIPT := 65304 ID_FILE_WINDOWSPY := 65402 ;ID_TRAY_WINDOWSPY := 65302 ID_FILE_PAUSE :=...
by ahklearner
17 Aug 2018, 08:25
Forum: Ask for Help (v1)
Topic: How to pause other hotkeys/hotstrings
Replies: 5
Views: 1497

Re: How to pause other hotkeys/hotstrings

this works as toggle OK, thank you very much for your kind suggestion. However, that solves only part of my problem since I also need to turn the script on. Like commands gosub TurnTheDarnedScriptOff ... various commands ... gosub TurnTheDarnedScriptOn. Do you - or anyone - happen to know how to tu...
by ahklearner
17 Aug 2018, 08:23
Forum: Ask for Help (v1)
Topic: How to pause other hotkeys/hotstrings
Replies: 5
Views: 1497

Re: How to pause other hotkeys/hotstrings

In case of suspend ? What to use instead of this ?
WM_COMMAND := 0x111
ID_FILE_PAUSE := 65403

thanks in advance
by ahklearner
17 Aug 2018, 07:54
Forum: Ask for Help (v1)
Topic: Sublime3 OutputDebug (how to use)
Replies: 3
Views: 969

Re: Sublime3 Debug Ahk Script ?

am wondering if anyone is using sublime for ahk ?
by ahklearner
09 Aug 2018, 08:42
Forum: Ask for Help (v1)
Topic: Does anyone have a desktop computer to test something?
Replies: 2
Views: 786

Re: Does anyone have a desktop computer to test something?

---------------------------
Desktop Results
---------------------------
AC Status: 1
Battery Flag: 128
Battery Life (percent): 255
Battery Life (time): 4294967295
Battery Life (full time): 4294967295
---------------------------
OK
---------------------------

intel core 2 duo, 64bit, 4GbRam
by ahklearner
08 Aug 2018, 06:23
Forum: Ask for Help (v1)
Topic: Sublime3 OutputDebug (how to use)
Replies: 3
Views: 969

Re: Sublime3 Debug Ahk Script ?

OutputDebug ???

I don't know where can I see its output :(

any help appreciated

Go to advanced search