Search found 90 matches
- 10 Oct 2020, 06:02
- Forum: Ask For Help
- Topic: AHKOSK Onscreen Keyboard revisited
- Replies: 1
- Views: 102
AHKOSK Onscreen Keyboard revisited
AHKOSK Onscreen Keyboard was written by Micahs back in 2007. It was regarded as a Beautiful and Brilliant work by many members of the old AHK forum at that time. The link to to source was broken and the only place that can download it is: http://www.gelbraensoftware.com/forum_stuff/ahk_download.php?...
- 05 Apr 2020, 07:14
- Forum: Ask For Help
- Topic: Autoscript Writer may be out of fashion..but how do I recorder these actions with it or other tool?
- Replies: 0
- Views: 525
Autoscript Writer may be out of fashion..but how do I recorder these actions with it or other tool?
I have saved AutoScriptWriter.exe file, so no matter how I upgrade AHK, I still have Autoscript Writer II (V1.0.47). However, it is not very helpful in some cases. For example, if I try to drag the Quick Launch area from 3 lines to 2 lines or vice versa, these "dragging" behaviors were not correctly...
- 14 Mar 2020, 22:12
- Forum: Ask For Help
- Topic: Finding a nice trick written in AHK Topic is solved
- Replies: 2
- Views: 310
Re: Finding a nice trick written in AHK Topic is solved
Thank you, boiler.
- 14 Mar 2020, 21:11
- Forum: Ask For Help
- Topic: Finding a nice trick written in AHK Topic is solved
- Replies: 2
- Views: 310
Finding a nice trick written in AHK Topic is solved
In a youtube video, AutoHotkey Webinar 07_2017 Hour 1-SciTE4Autohotkey (https://www.youtube.com/watch?v=L0eWUsjp3HE) , Mr. Joe Glines demonstrates a nice trick from 06:53 ~ at least up to 07:16. What he does is dragging a rectangle and then the snipping contents immediately available to all Windows....
- 20 Dec 2019, 01:55
- Forum: Ask For Help
- Topic: FileAppend vs FilePrepend?
- Replies: 4
- Views: 626
Re: FileAppend vs FilePrepend?
https://autohotkey.com/board/topic/86318-how-to-append-text-at-the-top-beginning-of-a-file/ I think the following old way is what I meant the simplest FilePrepend without taking the trouble of going thru open/read/write/close, unless someone has a better suggestion: FilePrepend [, Text, Filename, E...
- 17 Dec 2019, 02:57
- Forum: Ask For Help
- Topic: FileAppend vs FilePrepend?
- Replies: 4
- Views: 626
FileAppend vs FilePrepend?
The command FileAppend is pretty handly to use since we don't have to open/read/write/close a file. But sometimes, we may need to use FilePrepend to insert something right at the top of the file. Is there any simplest way(open/read/write/close is too much work) to achieve this since FilePrepend comm...
- 17 Dec 2019, 02:50
- Forum: Ask For Help
- Topic: AHK 1.1.32.00 HELP Error on Windows7
- Replies: 0
- Views: 351
AHK 1.1.32.00 HELP Error on Windows7
I am running AHK V1.1.32.00 on Windows 7 well initially. Recently I found that when I entered any character in Search Tab, an error windows appeared and asked me if I want to continue to run this command code of the web page. The Instruction Code Error contained: Line: 571 Character: 7 Error: Object...
- 15 Dec 2019, 04:33
- Forum: Ask For Help
- Topic: Can we change script compiled icon? Topic is solved
- Replies: 3
- Views: 567
Re: Can we change script compiled icon? Topic is solved
Thanks, TAC109:
MyThanks = % ThankYou * ThankYou
MyThanks = % ThankYou * ThankYou
- 13 Dec 2019, 04:45
- Forum: Ask For Help
- Topic: Can we change script compiled icon? Topic is solved
- Replies: 3
- Views: 567
Can we change script compiled icon? Topic is solved
When compiling an .AHK to .EXE, AHK gives an icon of H in white foreground plus yellow background color for all .EXE. Just wonder can we change this default icon to any icon we wish? By that I mean all .EXE compiled by AHK would yield to a same icon. I don't mean to change one or two single .EXE's i...
- 05 Dec 2019, 02:15
- Forum: Ask For Help
- Topic: WinTitle vs WinText Topic is solved
- Replies: 4
- Views: 962
Re: WinTitle vs WinText Topic is solved
Thanks, gregster. Inspired by your tip, I run the following code WinGetTitle, WinTitle,A WinGetText, WinText,A ;just like AHK Window Spy, this text may have multiple Lines MsgBox, WinTitle:"%WinTitle%"`n`nWinText:"%WinText%" against 8 cases, and have the following results: Ex1: AutoHotkey Help WinTi...
- 03 Dec 2019, 03:06
- Forum: Ask For Help
- Topic: WinTitle vs WinText Topic is solved
- Replies: 4
- Views: 962
WinTitle vs WinText Topic is solved
What is the genuine difference between WinTitle and WinText? In the cases of WinTitle(with ahk_class, ahk_id, ahk_exe), the difference between WinTitle and WinText is obvious. In the case of a string without ahk_class, ahk_id, ahk_exe, I am not so sure when to use WinTitle or WinText: Ex1: Using Win...
- 28 Nov 2019, 01:16
- Forum: Ask For Help
- Topic: Using paramters in BAT to invoke AHK Topic is solved
- Replies: 5
- Views: 773
Re: Using paramters in BAT to invoke AHK Topic is solved
kevib wrote: if someone knows why my hack worked I'll glad to know Well, two days have passed and I see no one taking the challenge. I don't know how your code works...but it just works! Instead of figuring out how it works, I found another question: How could a person with a tenure of less than 2 m...
- 26 Nov 2019, 03:57
- Forum: Ask For Help
- Topic: Using paramters in BAT to invoke AHK Topic is solved
- Replies: 5
- Views: 773
Re: Using paramters in BAT to invoke AHK Topic is solved
Thank you, kevib!
- 25 Nov 2019, 02:38
- Forum: Ask For Help
- Topic: Using paramters in BAT to invoke AHK Topic is solved
- Replies: 5
- Views: 773
Using paramters in BAT to invoke AHK Topic is solved
D:/AHK1.exe was compiled via D:/AHK1.ahk: all= Loop, %0% {arg := %A_Index% all = %all% %arg% } msgbox %all% wka = xx `nyy`nzz msgbox %wka% exit test1.bat: @D:\AHK1.exe xx `nyy`nzz @pause exit When I run test1.bat, I expected to see two identical dialog windows. However I saw two different ones: xx `...
- 04 Nov 2019, 04:03
- Forum: Ask For Help
- Topic: Using Mouseclick to click a systray icon issue
- Replies: 1
- Views: 789
Using Mouseclick to click a systray icon issue
F5:: CoordMode, mouse, screen MouseGetPos, x_absolute, y_absolute CoordMode, mouse, relative MouseGetPos, x_relative, y_relative CoordMode, mouse, window MouseGetPos, x_window, y_window msgbox %x_absolute%, %y_absolute%, %x_relative%, %y_relative%, %x_window%, %y_window% Pointing to any icon in sys...
- 10 Oct 2019, 23:55
- Forum: Ask For Help
- Topic: Sending texts to notepad by Menu vs Gui Topic is solved
- Replies: 3
- Views: 587
Re: Sending texts to notepad by Menu vs Gui Topic is solved
Thanks, Rohwedder and Odlanir, for your wonderful advice..it works.. 

- 10 Oct 2019, 04:37
- Forum: Ask For Help
- Topic: Sending texts to notepad by Menu vs Gui Topic is solved
- Replies: 3
- Views: 587
Sending texts to notepad by Menu vs Gui Topic is solved
I tried to open notepad, then press ctrl+shift+F6 to send text from Menu, it worked. ^+f6:: Menu, A1, Add Menu, A1, DeleteAll Menu, A1, Color, B5E61D Menu, A1, Add, London, OK Menu, A1, Add, Paris, OK Menu, A1, Add, Berlin, OK Menu, A1, Show, 1800, 500 return OK: xx = %A_ThisMenuItem% ;msgbox % xx s...
- 21 May 2019, 23:16
- Forum: Ask For Help
- Topic: Sendlevel issue Topic is solved
- Replies: 2
- Views: 496
Re: Sendlevel issue Topic is solved
Thank you, Rohwedder. Nice to learn it...
- 21 May 2019, 03:57
- Forum: Ask For Help
- Topic: Sendlevel issue Topic is solved
- Replies: 2
- Views: 496
Sendlevel issue Topic is solved
The following code sendinput {ScrollLock} needs SendLevel 1 to make it work; while sendinput {Pause} does not. Shouldn't sendinput {Pause} also need SendLevel 1 to make it work? Does anyone know why is that? Thanks! Pause:: msgbox 111 Exit ScrollLock:: msgbox 222 Exit F6:: sendinput {Pause} SendLeve...
- 24 Dec 2017, 03:52
- Forum: Ask For Help
- Topic: Using Variadic Functions
- Replies: 12
- Views: 2082
Re: Using Variadic Functions
Thank you for sharing your thoughts..I finally come out with a solution which does not require any hardcoding at all. The last hinder of missing the ByRef x* and ByRef s* is bypassed. The code has tested. Using the logic here, the parse function above can achieve the same thing, i.e. the limitation ...