Search found 160 matches

by Relayer
01 Oct 2014, 10:17
Forum: Ask for Help (v1)
Topic: Capture keypress in a function
Replies: 3
Views: 1615

Capture keypress in a function

Hi, I have a mental block that needs a kick. I have a function that contains a loop terminated by a mouse click: suspend, on myFunction() { While, !(GetKeyState("LButton", "p")) { <do stuff that takes time> } } suspend, off The LButton is used as a hotkey for other things that are running at the sam...
by Relayer
23 Sep 2014, 10:05
Forum: Scripts and Functions (v1)
Topic: [x64 & x32 fix] DeskIcons - Get/Set Desktop Icon Positions
Replies: 80
Views: 30645

Re: [x64 & x32 fix] DeskIcons - Get/Set Desktop Icon Positio

Hi, A natural extension of this would be to record / reset positions of icons in custom toolbars. I am not referring to application toolbars, but instead just the windows 7 toolbar facility that is part of the desktop / taskbar. Windows keeps the icons in a folder for a particular toolbar but the fo...
by Relayer
11 Sep 2014, 15:29
Forum: Ask for Help (v1)
Topic: AHK enthusiasts unite! against the beast...
Replies: 2
Views: 1125

Re: AHK enthusiasts unite! against the beast...

I didn't know that existed and worked against such ads. Thank you.

The world is now good again.

Relayer
by Relayer
11 Sep 2014, 13:20
Forum: Ask for Help (v1)
Topic: AHK enthusiasts unite! against the beast...
Replies: 2
Views: 1125

AHK enthusiasts unite! against the beast...

Sure, Google has done some neat things but I am sick of being accosted by adverts I don't want in my face. The worse offenders in my opinion are the highlighted text on web pages that generate an advertisement balloon when simply touched with the cursor. They are almost always tangential to what you...
by Relayer
29 Aug 2014, 20:23
Forum: Scripts and Functions (v1)
Topic: nixie: proof of concept using images to simulate a display
Replies: 3
Views: 2074

Re: nixie: proof of concept using images to simulate a displ

Thanks for the input. Yes, Gdip is needed. Sorry about the two missing functions. Can you say more about DpiScale? I'm not familiar with that. Attached are the missing functions and a .jpg of other font "images" I've been using (they look much better than what you see in this screen grab). Relayer
by Relayer
29 Aug 2014, 09:29
Forum: Scripts and Functions (v1)
Topic: nixie: proof of concept using images to simulate a display
Replies: 3
Views: 2074

nixie: proof of concept using images to simulate a display

This script uses a set of images, in this case nixie tube numeric characters, to create a virtual display. The main feature of this method is that you can make a display out of any set of images that represent your digit characters. For example, an LCD, an LED, the train station "flip" displays, etc...
by Relayer
20 Aug 2014, 18:16
Forum: Scripts and Functions (v1)
Topic: [ Music Files Tag Editor written in Autohotkey ]
Replies: 47
Views: 20329

Re: [ Music Files Tag Editor written in Autohotkey ]

OK, Your suggestions worked if I changed your script to not use the ID3V2 set of functions to read the tags. Your original script had MP3 being processed with the ID3V2 instead of AUDIO. Which one is right for MP3 files? Now I'm having issues writing modified tags back to the file. I see you again u...
by Relayer
20 Aug 2014, 03:00
Forum: Scripts and Functions (v1)
Topic: [ Music Files Tag Editor written in Autohotkey ]
Replies: 47
Views: 20329

Re: [ Music Files Tag Editor written in Autohotkey ]

Yes, I am using the ANSI version. Could that be the issue?

Relayer
by Relayer
20 Aug 2014, 02:26
Forum: Scripts and Functions (v1)
Topic: [ Music Files Tag Editor written in Autohotkey ]
Replies: 47
Views: 20329

Re: [ Music Files Tag Editor written in Autohotkey ]

I'm sorry the variable dll is set to the path and name of the AudioGenie3.dll so my script is already doing what you are saying it should use. I downloaded AudioGenie from SourceForge. I tried both the 64 bit and the 32 bit versions with the same result. I am using AutoHotkey v1.1.14.04 (AHK_L) Rela...
by Relayer
19 Aug 2014, 18:44
Forum: Scripts and Functions (v1)
Topic: [ Music Files Tag Editor written in Autohotkey ]
Replies: 47
Views: 20329

Re: [ Music Files Tag Editor written in Autohotkey ]

This line:
DllCall(dll . "\AUDIOAnalyzeFileW", Str,A_LoopFileFullPath )

returns 0, which according to the AudioGenie documentation is "unknown format".

Any ideas as to why I am getting that for .mp3 files?

Thanks,
Relayer
by Relayer
04 Apr 2014, 15:18
Forum: Scripts and Functions (v1)
Topic: Syntax Colouring for Notepad++
Replies: 7
Views: 6728

Re: Syntax Colouring for Notepad++

If you want a dark theme look for one written by Panofish. You should be able to find it. I love it.

Relayer

Here it is:
http://www.autohotkey.com/board/topic/6 ... or-scheme/
by Relayer
26 Mar 2014, 16:18
Forum: Ask for Help (v1)
Topic: Change Colors in Excel file with COM
Replies: 4
Views: 4615

Re: Change Colors in Excel file with COM

Look for Excel VBA macros that do what you want. It is fairly easy to translate them into AHK once you see the objects, methods, and properties they use. Then use the MSDN online references to get the details.

Relayer
by Relayer
26 Mar 2014, 15:59
Forum: Scripts and Functions (v1)
Topic: [Function] GuiButtonIcon
Replies: 27
Views: 16130

Re: [Function] GuiButtonIcon

Thank you... I see the benefits now.

It looks like the image list facility is designed around icons. Can your script be adapted to place any picture file on a button?

Relayer
by Relayer
25 Mar 2014, 14:42
Forum: Scripts and Functions (v1)
Topic: [Function] GuiButtonIcon
Replies: 27
Views: 16130

Re: [Function] GuiButtonIcon

Doesn't the following essentially do the same thing using the native Gui commands? Gui, Add, Picture, x%x_location% y%y_location% w-1 h10 hwndPicHandle gGuiCall, %A_ScriptDir%\263.ico The width and height parameters can adjust the rendered size. The only thing missing is flagging a missing icon file...
by Relayer
31 Jan 2014, 11:09
Forum: Scripts and Functions (v1)
Topic: TVClose() - Close GUI like a TV shutdown
Replies: 16
Views: 8566

Re: TVClose() - Close GUI like a TV shutdown

AfterLemon, Thanks for the feedback. I didn't mean to present my script as finished in any way. I simply wanted to toss out a few ideas I had. I would fully expect the ideas to be rewritten into other people's scripts in ways they deem fit for their purposes. In fact, at this point this script is ju...
by Relayer
31 Jan 2014, 10:08
Forum: Scripts and Functions (v1)
Topic: TVClose() - Close GUI like a TV shutdown
Replies: 16
Views: 8566

Re: TVClose() - Close GUI like a TV shutdown

Hi, I added a few things that I wanted to contribute. 1. Added fade-in to make it look like a TV tube is warming up. 2. Added a black dummy background for closing to mimic the TV tube going black. I changed the function around for my own purposes which means what I have done will not just plug into ...
by Relayer
18 Dec 2013, 10:53
Forum: Scripts and Functions (v1)
Topic: [Function] Decimal2Fraction and Fraction2Decimal
Replies: 38
Views: 16537

Re: [Function] Decimal2Fraction and Fraction2Decimal

Decimal2Fraction(1.5,"AA") gives me 1'-7''

Relayer
by Relayer
18 Nov 2013, 14:13
Forum: Scripts and Functions (v1)
Topic: [Script] AHK No Comments
Replies: 7
Views: 5413

Re: [Script] AHK No Comments

In my case I have a script that generates a list of all lib files, sub-scripts, & includes that a given script depends on to run. I parse the files line by line and it is much easier to just strip out all comments before processing each file. I don't save the file once the comments are stripped, jus...
by Relayer
11 Oct 2013, 10:38
Forum: About This Community
Topic: AHK(v2) rebranding [Name Suggestions]
Replies: 120
Views: 68588

Re: AHK(v2) rebranding [Name Suggestions]

I like "lexikos". What better way to honor the person who has contributed so much!

BTW, how about "LexAHKos"?

Relayer
by Relayer
30 Sep 2013, 15:29
Forum: About This Community
Topic: Directional question
Replies: 28
Views: 16806

Re: Directional question

Can someone outline the basic differences between the two? I used to use AHKbasic but now use _L. Wow, how did I ever live without objects? Given that, I'm siding with _L right now.

Go to advanced search