Search found 85 matches

by AfterLemon
26 Nov 2022, 12:24
Forum: Ask for Help (v1)
Topic: How to make text appear every 20 minutes Topic is solved
Replies: 12
Views: 2947

Re: How to make text appear every 20 minutes Topic is solved

Quick clarification as to the issue seen in the last few comments: SetTimer, Controlt, (20 * 60 * 1000) will not work because SetTimer is a command and requires string inputs. You can force expression syntax by using a parenthesis like SetTimer, Controlt, % (20 * 60 * 1000) This evaluates 20*60*1000...
by AfterLemon
02 Feb 2021, 23:51
Forum: Scripts and Functions (v1)
Topic: Toggle Microphone Mute
Replies: 34
Views: 79251

Re: Toggle Microphone Mute

You can replace the Tooltip line with this:

Code: Select all

ToolTip,% "Mic " (master_mute="On"?"Off":"On") ;use a tool tip at mouse pointer to show what state mic is after toggle
by AfterLemon
03 Jun 2016, 13:46
Forum: Ask for Help (v1)
Topic: [SOLVED] Function to transpose names gives errors
Replies: 3
Views: 1825

Re: Function to transpose names gives errors

"$2, $1" is the problem You are reordering by grabbing everything left of the last space and putting it on the right. Except in the 2nd and 3rd names, your list has ", Susan" which includes the space to the left of the name This line should add a LTrim to the input name := RegExReplace(LTrim(A_Loop...
by AfterLemon
23 Jul 2014, 14:41
Forum: About This Community
Topic: AHK(v2) rebranding [Name Suggestions]
Replies: 120
Views: 67330

Re: AHK(v2) rebranding [Name Suggestions]

Random Ideas for a Name: Cloak C ++-based L anguage for O ptimized A utomation of K eys Shift S cripting H otkey I ntegrated F reeware T ool Ash A utomated S cripting for H otkeys Hawk H otkey A utomation for the W indows Kernel Mahk (pronounced Mach) M odern A utomation with H ot K eys Fast F ast A...
by AfterLemon
23 Jul 2014, 10:48
Forum: About This Community
Topic: AHK(v2) rebranding [Name Suggestions]
Replies: 120
Views: 67330

Re: AHK(v2) rebranding [Name Suggestions]

I like Meerkat.
A group of meerkats is called a "mob", "gang" or "clan".

Meerkat: Macro Emulation Environment Reintegrating Keyboard Automation Tool

Definitely a mouthful, but I like the simple name Meerkat.
by AfterLemon
28 May 2014, 11:47
Forum: Scripts and Functions (v1)
Topic: String Things - Stand-alone string manipulation functions
Replies: 35
Views: 35170

Re: String Things - Stand-alone string manipulation function

I would find a st_Concat(delim, s*...) function quite useful. I'm not sure that's more than a few characters you might be saving. Obviously it could be done, but it's not even something that's easier done in a function than just with a single command. Data:="a,b,c,d,e,f,g,h",Data:=ST_Concat("|",Dat...
by AfterLemon
09 Apr 2014, 21:03
Forum: Forum Issues
Topic: Topic page title
Replies: 23
Views: 11783

Re: Topic page title

Hahaha well it's better than these..
by AfterLemon
09 Apr 2014, 17:18
Forum: Forum Issues
Topic: Topic page title
Replies: 23
Views: 11783

Re: Topic page title

Oh right right, nobody cares unless it's subsilver. BLECH. I hate these uglies.

We should switch to this gorgeous one!
by AfterLemon
09 Apr 2014, 14:13
Forum: Forum Issues
Topic: Topic page title
Replies: 23
Views: 11783

Re: Topic page title

Same exact issue here:
Image Example

This makes Google search VERY difficult for anyone, especially new users.
Image Example

I also agree that "(an AutoHotkey Forum)" in the title is somewhat overkill, unless you're doing SEO with these sites?
by AfterLemon
09 Apr 2014, 14:09
Forum: Wish List
Topic: Inconsistent __Call behaviour
Replies: 21
Views: 8165

Re: Inconsistent __Call behaviour

__call is called each time a method within the class base is called. This ALWAYS happens. If the class is an extension: obj.base.base, the prior base (obj.base) does not get called UNLESS the method does not exist in the extended class. class TestClass { __call(MethodCall) { Msgbox,% MethodCall ".__...
by AfterLemon
27 Mar 2014, 10:58
Forum: Off-topic Discussion
Topic: The Last of AHKScript - Zork-Style RPG
Replies: 7
Views: 4915

Re: The Last of AHKScript - Zork-Style RPG

You flick your headlights on, noticing that because it's the morning there is very little effect. However, you know it's safer that way anyway. You pull your sunglasses off of the dash and put them on; you can see better now. Glancing down, you notice it's 8:30am, March 27th. Throwing the shifter in...
by AfterLemon
26 Mar 2014, 16:50
Forum: Off-topic Discussion
Topic: The Last of AHKScript - Zork-Style RPG
Replies: 7
Views: 4915

Re: The Last of AHKScript - Zork-Style RPG

The car starts with no issues. Luckily, you've had it in the shop recently for emissions and an oil change. You have about 75% of your tank of gas.
by AfterLemon
26 Mar 2014, 16:20
Forum: Off-topic Discussion
Topic: The Last of AHKScript - Zork-Style RPG
Replies: 7
Views: 4915

Re: The Last of AHKScript - Zork-Style RPG

You quickly rush to your pantry, glancing inside. Luckily, since you're a bachelor, there's many cans of food. You run to your bedroom closet, grabbing a duffel bag and your Glock plus 3 boxes of ammunition. You throw the ammo in the bag along with a few clothes. Hurrying back to the pantry, you gra...
by AfterLemon
26 Mar 2014, 14:18
Forum: Off-topic Discussion
Topic: The Last of AHKScript - Zork-Style RPG
Replies: 7
Views: 4915

The Last of AHKScript - Zork-Style RPG

This is a Zork -style relatively long-term game available to anyone at any time. The first responder (Now tidbit), is the main character. His character's actions determine where the story is set, and all additional player actions must be within the same city, or communicated in some way. If others' ...
by AfterLemon
26 Mar 2014, 11:11
Forum: About This Community
Topic: Basics as to why AHKSCRIPT exists
Replies: 95
Views: 86124

Re: Basics as to why AHKSCRIPT exists

One of the main concerns regarding forming a "foundation" through an LLC is the necessity of standards. In most cases, our community here is building a knowledge-base of high-quality human-machine interaction aides. However there are some cases, such as keyloggers, game hacks, and other similarly-or...
by AfterLemon
24 Mar 2014, 18:27
Forum: Forum Issues
Topic: Domain Redirection Login Issues
Replies: 2
Views: 2363

Re: Domain Redirection Login Issues

The lemon is always bitter D:< Thanks!

And yeah, I just wanted to figure out why it was like this and (obviously) i failed to think of cookies... which is sad because they're delicious.
by AfterLemon
17 Mar 2014, 11:09
Forum: Scripts and Functions (v1)
Topic: stabby is an alternative to alt tab madness
Replies: 3
Views: 2777

Re: stabby is an alternative to alt tab madness

Initial assignment of Capslock was not working, so I had to remove the settings from the .ini and use "options" to add it back in. Might want to check that out. As well, I'd recommend checking if the hotkey is Capslock, Numlock, etc GetKeyState of that key (using the "T") option, and the use SetCaps...
by AfterLemon
15 Mar 2014, 10:34
Forum: Scripts and Functions (v1)
Topic: [Class] Console - Standardized Console GUI with Methods
Replies: 44
Views: 26620

Re: [Class] Console - Standardized Console GUI with Methods

Thank you Sjc1000. We did, in fact, talk about the use of the right-click menu. We want this console to serve as great a purpose as it can, so we decided to leave that feature in. In fact, the ability to save information to it and print directly from the control is pretty useful. I appreciate the he...

Go to advanced search