Search found 1129 matches

by TAC109
03 Jul 2016, 18:42
Forum: Ask for Help (v1)
Topic: Just curious
Replies: 1
Views: 490

Re: Just curious

See Built-in Performance Features for load-time optimisations.
by TAC109
01 Jul 2016, 20:53
Forum: About This Community
Topic: Solved Button proposal Topic is solved
Replies: 47
Views: 30322

Re: Solved Button proposal Topic is solved

I suppose it's more a Usenet thing. Anyway I was trying to test aspects of the 'solved' button and I attempted to do this in the 'off topic' forum as it seemed to be the most appropriate forum to use. I and someone else had done this earlier without problems but my recent attempt didn't work. I was ...
by TAC109
01 Jul 2016, 19:17
Forum: About This Community
Topic: Solved Button proposal Topic is solved
Replies: 47
Views: 30322

Re: Solved Button proposal Topic is solved

As there is no 'test' forum, 'off topic' would seem to be the closest one to use for testing forum facilities.
by TAC109
28 Jun 2016, 19:36
Forum: About This Community
Topic: Solved Button proposal Topic is solved
Replies: 47
Views: 30322

Re: Solved Button proposal Topic is solved

It would certainly be useful in 'off topic'.

However I believe my second paragraph should be addressed too.

Edit:- Also whether the solved tick can be turned off? (I was unable to test this)
by TAC109
28 Jun 2016, 17:50
Forum: About This Community
Topic: Solved Button proposal Topic is solved
Replies: 47
Views: 30322

Re: Solved Button proposal Topic is solved

I've just tried to test the 'solved' button in 'off topic' but can't find it any more, in any board style. I was trying to test if, having turned it on, it could be turned off. There seems to be a sprinkling of ticks in the 'ask for help' forum which don't seem to be related to whether the OPs quest...
by TAC109
28 Jun 2016, 17:35
Forum: Off-topic Discussion
Topic: Checking Solved button Topic is solved
Replies: 3
Views: 2653

Re: Checking Solved button Topic is solved

Can't see a Solved button in any board style!!
by TAC109
28 Jun 2016, 17:28
Forum: Off-topic Discussion
Topic: Checking Solved button Topic is solved
Replies: 3
Views: 2653

Re: Checking Solved button Topic is solved

No Solved button visible when using the prosilver profile!!
by TAC109
28 Jun 2016, 17:25
Forum: Off-topic Discussion
Topic: Checking Solved button Topic is solved
Replies: 3
Views: 2653

Checking Solved button Topic is solved

How does it work?
by TAC109
27 Jun 2016, 04:58
Forum: Gaming Help (v1)
Topic: Inventory Cycler Topic is solved
Replies: 3
Views: 1089

Re: Inventory Cycler Topic is solved

Looks like AutoIt v3
by TAC109
24 Jun 2016, 20:23
Forum: AutoHotkey Development
Topic: Commands vs Functions
Replies: 85
Views: 34674

Re: Commands vs Functions

A little history. AHK started as a fork of AutoIt v2 back in the day. As far as I can make out AutoIt was designed to have similar syntax to DOS, presumably to make it easy for the language to be picked up by someone who was familiar with DOS. Thus we have command-type statements, non-quoted literal...
by TAC109
21 Jun 2016, 05:13
Forum: Off-topic Discussion
Topic: Check solved button Topic is solved
Replies: 3
Views: 2343

Re: Check solved button Topic is solved

It doesn't show up when using the prosilver theme.
Oh wait, I see it now.
However it seems to be 'on' only - it can't be turned off?
by TAC109
21 Jun 2016, 00:58
Forum: Off-topic Discussion
Topic: Check solved button Topic is solved
Replies: 3
Views: 2343

Re: Check solved button Topic is solved

TAC109 wrote:Check solved button
Ok, how does this work again?
by TAC109
21 Jun 2016, 00:56
Forum: Off-topic Discussion
Topic: Check solved button Topic is solved
Replies: 3
Views: 2343

Check solved button Topic is solved

Check solved button
by TAC109
19 May 2016, 22:47
Forum: Ask for Help (v1)
Topic: shorten my code?
Replies: 5
Views: 1311

Re: shorten my code?

Exaskryz wrote: But, do note that for loops alphabetize.
Not in this case. Note that the simple array ["a","b","c","d","e","f","g","h","i","j"] is equivalent to the associative array {1:"a",2:"b",3:"c",4:"d",5:"e",6:"f",7:"g",8:"h",9:"i",10:"j"}. It is the key that is alphabetized, not the value.
by TAC109
19 May 2016, 21:38
Forum: Ask for Help (v1)
Topic: shorten my code?
Replies: 5
Views: 1311

Re: shorten my code?

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starti...
by TAC109
19 May 2016, 19:52
Forum: Scripts and Functions (v1)
Topic: Cross Reference List (XRef)
Replies: 52
Views: 22532

Re: Cross Reference List (XRef)

One of the last changes I made was to the 'Print Report' facility to try and make it work correctly on non-English versions of Windows. I would be interested to hear back from anyone using this option of XRef under these circumstances. (There may be a pause of 4 seconds while the 'print' Windows of ...
by TAC109
18 May 2016, 22:45
Forum: Scripts and Functions (v1)
Topic: Cross Reference List (XRef)
Replies: 52
Views: 22532

Re: Cross Reference List (XRef)

Updated 19 May 2016 -
The 'mono' button now doesn't generate a UAC prompt and keeps Notepad's previous position and size.
The 'Print Report' option has been updated.
by TAC109
14 May 2016, 17:34
Forum: Ask for Help (v1)
Topic: conditional return in one line (ternary) outside functions?
Replies: 9
Views: 4280

Re: conditional return in one line (ternary) outside functions?

ifnotequal val, 0, return Nice find. But it appears that val can't be an expression here, which limits the usefulness of this method. Well, you specified 'val' rather than 'expression'. Anyway, this method can be varied to work with expressions. Here's a trivial example:- IfEqual false, % val - 3, ...
by TAC109
13 May 2016, 18:02
Forum: Ask for Help (v1)
Topic: conditional return in one line (ternary) outside functions?
Replies: 9
Views: 4280

Re: conditional return in one line (ternary) outside functions?

Code: Select all

ifnotequal val, 0, return
or

Code: Select all

ifnotequal val, 0, ifnotequal val, , return
by TAC109
03 May 2016, 16:21
Forum: AHK Studio
Topic: AHK Studio
Replies: 1179
Views: 634764

Re: AHK Studio

If you're willing to try SciTE4AHK again, see this post plus following posts in the SciTE4AHK thread for how to debug code with parameters using this editor. https://www.autohotkey.com/boards/viewtopic.php?f=6&t=62&start=500#p71588 Thanks for the heads-up; I saw that but it's a bit over my head. It...

Go to advanced search