Search found 1126 matches

by TAC109
27 Mar 2015, 21:24
Forum: Ask for Help (v1)
Topic: Right-clicking an AHK menu item
Replies: 18
Views: 5526

Re: Right-clicking an AHK menu item

Thanks for the code. I'll check it out.
by TAC109
26 Mar 2015, 21:15
Forum: Ask for Help (v1)
Topic: Right-clicking an AHK menu item
Replies: 18
Views: 5526

Right-clicking an AHK menu item

Having displayed an AHK menu with fly-outs, is there a reasonably easy way of detecting a right-click on a menu item and determining which menu and which item were selected?

(I'm aware of how to do this for a left click.)
by TAC109
07 Mar 2015, 16:06
Forum: Forum Issues
Topic: ahkscript.org forum seems extremely slow
Replies: 170
Views: 58676

Re: ahkscript.org forum seems extremely slow

No reply, but these problems have now been fixed. Many thanks to whoever helped!
by TAC109
28 Feb 2015, 21:15
Forum: Forum Issues
Topic: ahkscript.org forum seems extremely slow
Replies: 170
Views: 58676

Re: ahkscript.org forum seems extremely slow

Around the time of the latest slowdown (for the last week) I have been getting "cannot load page - too many redirects" on occasion. Also clicking on the ”view first unread post" icon often goes to start of page only and not to the first unread message.

Using safari on my iPad.
by TAC109
24 Jan 2015, 16:20
Forum: Scripts and Functions (v1)
Topic: GUI Creator (formerly Basic GUI Creator)
Replies: 64
Views: 159804

Re: GUI Creator (formerly Basic GUI Creator)

Can I use GUI Creator to edit the GUI commands from an existing script? (I can't see any way to paste a new set of GUI commands into your utility.)
by TAC109
04 Jan 2015, 18:21
Forum: Ask for Help (v1)
Topic: Alternative compilers?
Replies: 7
Views: 2900

Re: Alternative compilers?

by TAC109
03 Jan 2015, 18:44
Forum: Bug Reports
Topic: [Fixed] Get UAC prompt for compiled script after v1.1.16.05
Replies: 5
Views: 2494

Re: Get UAC prompt for compiled script after vn 1.1.16.05

Thanks again for your help. Changing 'Setup' to 'Set-up' in the file name and the ;Ahk2Exe-SetName entry is enough to defeat this 'feature'. The term 'Mickey Mouse' comes to mind!
by TAC109
03 Jan 2015, 01:19
Forum: Bug Reports
Topic: [Fixed] Get UAC prompt for compiled script after v1.1.16.05
Replies: 5
Views: 2494

Re: Get UAC prompt for compiled script after vn 1.1.16.05

Thanks for your explanation. However there seems to be something in this script that triggers this behaviour as I have other scripts that I have compiled with 1.1.18.00 without this UAC effect. When diagnosing this problem I also copied my script to 'Fred.ahk' but still had the problem after compila...
by TAC109
02 Jan 2015, 21:41
Forum: Bug Reports
Topic: [Fixed] Get UAC prompt for compiled script after v1.1.16.05
Replies: 5
Views: 2494

[Fixed] Get UAC prompt for compiled script after v1.1.16.05

A particular script, when compiled with installed versions 1.1.17.01 or 1.1.18.00, gives a UAC prompt when launched. (The compiled executable also has the UAC shield on the corner of the 'H' icon.) Getting the UAC prompt is extremely undesirable. None of my other scripts have this problem. When comp...
by TAC109
30 Dec 2014, 18:39
Forum: Bug Reports
Topic: Ampersand in Gui,Add,Button fails to underline character
Replies: 16
Views: 5833

Re: Ampersand in Gui,Add,Button fails to underline character

On win 7, Control panel -> ease of access center -> make the keyboard easier to use -> underline keyboard shortcuts and access keys.

Works for me
by TAC109
28 Dec 2014, 19:17
Forum: Bug Reports
Topic: FileAppend of ClipboardAll < 19 bytes gives crash
Replies: 2
Views: 1405

FileAppend of ClipboardAll < 19 bytes gives crash

Running 32bit ANSI AHK. Run the following code. Copy some text to clipboard with Ctrl+C. If the text is <19 bytes in length, the FileAppend will crash. #NoEnv ; For performance & future compatibility #Warn ; For catching common errors SendMode Input ; For superior speed and reliability SetWorkingDir...
by TAC109
19 Dec 2014, 17:06
Forum: Bug Reports
Topic: Hard to describe compiled script crash bug
Replies: 3
Views: 2325

Re: Hard to describe compiled script crash bug

It looks like your .exe is compressed. Using mpress? Mpress can sometimes produce .exe's that crash. Search the old forum for more information. I've switched back to using upx.exe for compression. To do this, use this script as mpress.ahk and compile it, replacing mpress.exe in the AutoHotkey\compil...
by TAC109
16 Dec 2014, 17:03
Forum: Ask for Help (v1)
Topic: #include file cannot be opened
Replies: 3
Views: 2941

Re: #include file cannot be opened

I've had a similar problem. I keep my scripts in a Dropbox folder and if I compile a script which has #include, sometimes the specified file is not included. I have surmised that there can be some interaction between the compiler and Dropbox that makes the included file not available at times. Repea...
by TAC109
27 Nov 2014, 17:38
Forum: Bug Reports
Topic: [solved] Command "expression mode" mishandles direct arrays
Replies: 3
Views: 1961

[solved] Command "expression mode" mishandles direct arrays

x:=2 MsgBox,,,% "Text " ["text1 ","Text2 "][x] "Text3" ; bug - only shows Text3 MsgBox,,,% "Text " LTrim(["text1 ","Text2 "][x]) "Text3" ; shows Text Text2 Text3 z:=["text1 ","Text2 "] MsgBox,,,% "Text " z[x] "Text3" ; shows Text Text2 Text3 The errant behaviour of the first MsgBox is also seen on ...
by TAC109
22 Oct 2014, 21:56
Forum: Forum Issues
Topic: [FIXED] codeboxes too wide, when containing long lines
Replies: 10
Views: 4166

Re: [FIXED] codeboxes too wide, when containing long lines

joedf wrote:This has been fixed. sort of....
All code boxes now seem to be 100 characters wide, regardless of the width of the contents.
by TAC109
01 Sep 2014, 17:09
Forum: Bug Reports
Topic: Fixed - Crash in AHK 32bit
Replies: 8
Views: 2940

Re: Crash in AHK 32bit

lexikos wrote:In any case, it will be fixed in the next release.
Thanks
by TAC109
31 Aug 2014, 21:31
Forum: Bug Reports
Topic: Fixed - Crash in AHK 32bit
Replies: 8
Views: 2940

Re: Crash in AHK 32bit

By 'work' I mean 'not crash'. In the circumvention 'z' evaluates to an empty string, as expected.

Go to advanced search