Search found 146 matches

by timeFlies
25 Jan 2014, 15:13
Forum: Off-topic Discussion
Topic: Don't use Dropbox for AHK compiled scripts
Replies: 15
Views: 8969

Re: Don't use Dropbox for AHK compiled scripts

I think this could possibly happen to any of the major cloud storage services. Do you ever read the licence agreement before clicking "I agree"? I usually skim them, and you'd be surprised at the stuff they put in there. For instance, for Microsoft services (which includes SkyDrive--I just installed...
by timeFlies
25 Jan 2014, 14:57
Forum: Wish List
Topic: Auto convert code tags
Replies: 4
Views: 2350

Re: Auto convert code tags

I had the same problem, until I realised that it's as simple as typing [co de=autohotkey]code here[/co de]. Just add the "=autohotkey" part and it will highlight accordingly.
by timeFlies
25 Jan 2014, 12:14
Forum: Ask for Help (v1)
Topic: Is AutoHotKey what I need?
Replies: 32
Views: 9693

Re: Is AutoHotKey what I need?

Wow, thank you so much! Yes, I will try to learn because I am interested! I've just been very busy repairing some laptop (and will still be for the weekend), but as soon as I get some free time I'm gonna dive into AHK. :) By the way, is any truth in this comment here (last one) - could this be done...
by timeFlies
25 Jan 2014, 11:56
Forum: Ask for Help (v1)
Topic: need a tutorial on variable use with %
Replies: 15
Views: 4628

Re: need a tutorial on variable use with %

nnnik wrote:
s almost like a "double variable", for lack of a better word:
Do you mean pointer ?
I honestly have no idea what a pointer is. Most of my programming experience is limited to AutoHotkey, Scheme (similar to LISP) (where all variables are constants), and a very limited understanding of C.
by timeFlies
25 Jan 2014, 01:23
Forum: Scripts and Functions (v1)
Topic: Super simple download with progressbar
Replies: 27
Views: 15641

Re: Super simple download with progressbar

Sweet! I love it!

One question: For example 2, where the heck does the file save?
by timeFlies
25 Jan 2014, 00:11
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1395112

Re: « What's on your mind? » Topic is solved

I suspect a large portion of those were spam-bots. If you take a look at the Members page, it's pretty obvious which ones aren't real, both because of the names and the nothing-but-spam-would-do websites they have set. So I don't know how accurate that count is.
by timeFlies
24 Jan 2014, 16:54
Forum: Ask for Help (v1)
Topic: need a tutorial on variable use with %
Replies: 15
Views: 4628

Re: need a tutorial on variable use with %

Ahhh... I see you found the new site! This is one of the most confusing aspects of AutoHotkey. I'll try to explain. Essentially, there are two types (for the purpose of this discussion) of parameters: expressions, and strings. In an expression, strings must be enclosed in quotation marks ("") and va...
by timeFlies
24 Jan 2014, 12:25
Forum: Forum Issues
Topic: New Home page up
Replies: 92
Views: 66069

Re: New Home page up

You're right. I tend to forget that most people are not like me and don't want to read a bunch of stuff first.
by timeFlies
24 Jan 2014, 12:22
Forum: Ask for Help (v1)
Topic: How to start my AHk definitions automatically
Replies: 12
Views: 7479

Re: How to start my AHk definitions automatically

@Colombe: I can't fix your original problem, but I thought I'd mention that if your hotkey is only one line long, you can do it like this:
This can be quite handy if you have a lot of them.
by timeFlies
24 Jan 2014, 12:09
Forum: Ask for Help (v1)
Topic: Set Width of Gui listview vertical scrollbar
Replies: 4
Views: 2469

Re: Set Width of Gui listview vertical scrollbar

Well, you could set the width of ALL scrollbars in Windows to a minimum of 8 pixels wide. This used to be super easy in Win7 and earlier, but now Microsoft has removed the Advanced Window Settings dialogue. Editing the registry is the only way now. Personally, I like my scrollbars nice and fat (25-3...
by timeFlies
24 Jan 2014, 12:04
Forum: Ask for Help (v1)
Topic: Can't Determine ClassNN from Chrome v.32
Replies: 12
Views: 6062

Re: Can't Determine ClassNN from Chrome v.32

But if the Chrome window isn't focused, that would just send the Space to the active window, wouldn't it?

Try passing a WinText parameter with a part of the Chrome window title that stays the same (eg "Chrome").
by timeFlies
24 Jan 2014, 12:00
Forum: Wish List
Topic: build a wiki based on current help?
Replies: 2
Views: 1854

Re: build a wiki based on current help?

There is currently a wiki, but it is locked down because of spam. Tank has said that he is in the process of getting something going, but it might take a while.
by timeFlies
24 Jan 2014, 11:57
Forum: Wish List
Topic: Add COM Object Reference Page to the wiki.
Replies: 8
Views: 3869

Re: Add COM Object Reference Page to the wiki.

In the mean time, Menixator, feel free to write-up a page offline that will be all ready to go when the wiki is ready.
by timeFlies
24 Jan 2014, 11:55
Forum: Ask for Help (v1)
Topic: Dealing with a redirect
Replies: 1
Views: 1067

Re: Dealing with a redirect

I'm not sure what a suitable approach would be, but I know that the best and most reliable way to interact with web pages is by using COM, which is built into AutoHotkey. Unfortunately, I can't help you there because I don't know how to do it myself, but there are several videos about it somewhere a...
by timeFlies
24 Jan 2014, 10:52
Forum: Ask for Help (v1)
Topic: Tap vs. Hold?
Replies: 5
Views: 3418

Re: Tap vs. Hold?

See the Key List . Here's a quick example that should demonstrate what you want. I know when I first started using AHK that I would never have been able to figure this out. (Untested because I'm writing this from my mobile.) I tested it now and added the second WinWait. F13:: ; pressing F13 triggers...
by timeFlies
24 Jan 2014, 10:39
Forum: Ask for Help (v1)
Topic: Mapping keyboard buttons to a gamepad?
Replies: 3
Views: 5366

Re: Mapping keyboard buttons to a gamepad?

First of all, a lot of people on this forum will not answer questions having to do with automating (ie cheating at) games, but your question is not really like that, so I'll go ahead and answer it. Yes, remapping keys is one of the strongholds of AutoHotkey, though there are limitations for doing th...
by timeFlies
23 Jan 2014, 23:11
Forum: Ask for Help (v1)
Topic: Is AutoHotKey what I need?
Replies: 32
Views: 9693

Re: Is AutoHotKey what I need?

SciTE4AutoHotkey is a customised version of SciTE that includes: Syntax highlighting Calltips (also known as IntelliSense) AutoComplete AutoIndent AutoHotkey help integration Abbreviations Editing macros Interactive debugging Tools for AutoHotkey scripting Powerful extension mechanisms So this is b...
by timeFlies
23 Jan 2014, 18:07
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1395112

Re: « What's on your mind? » Topic is solved

joedf wrote:Are you sure it's ahkscript.com? I thought it was ahkscript.org... ;)
What?
by timeFlies
23 Jan 2014, 18:06
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1395112

Re: « What's on your mind? » Topic is solved

Okay, who's up for editing it and cleaning it up? Everybody as a whole?

Go to advanced search