| Author |
Message |
Topic: Bit Flag Demo (for those interested in using this technique) |
DerRaphael
Replies: 4
Views: 413
|
Forum: Scripts & Functions Posted: Sun Mar 07, 2010 4:12 pm Subject: Bit Flag Demo (for those interested in using this technique) |
fun with bits II, this time swap two integer values
a := 123456
b := 654321
msgbox % a "/" b
swap(a,b)
msgbox % a "/" b
; short and sweet, interesting ... |
Topic: Bit Flag Demo (for those interested in using this technique) |
DerRaphael
Replies: 4
Views: 413
|
Forum: Scripts & Functions Posted: Sun Mar 07, 2010 3:59 pm Subject: Bit Flag Demo (for those interested in using this technique) |
a lil set of bin Ops with a code fo how to use 'em
; fun with bits
; (w) by derRaphael 2010-03-07
d:=0, bits := 8
loop, % bits
{
setFlag( d, a_index )
msgbo ... |
Topic: Doc-O-Matic: AutoHTML Documentation for AHK-Scripts (Beta) |
DerRaphael
Replies: 6
Views: 609
|
Forum: Scripts & Functions Posted: Sat Mar 06, 2010 3:49 pm Subject: Doc-O-Matic: AutoHTML Documentation for AHK-Scripts (Beta) |
| this beta does not work with your ini library because of the preamble you used. since there are lines which start directly with an opening perenthesis, the script interprets it as a continuation secti ... |
Topic: Ahk Standard Library Collection, 2010 Mar (+ Gui) ~ Libs: 69 |
DerRaphael
Replies: 72
Views: 4019
|
Forum: Scripts & Functions Posted: Fri Mar 05, 2010 10:49 am Subject: Ahk Standard Library Collection, 2010 Mar (+ Gui) ~ Libs: 69 |
| Like already said before, I am really not sure about that. These functions are not seen as projects, like the wrapper of Random command. Random is a command which many people would wrap it into a func ... |
Topic: [function] httpQuery GET and POST requests - update 0.3.5 |
DerRaphael
Replies: 141
Views: 35665
|
Forum: Scripts & Functions Posted: Fri Mar 05, 2010 10:45 am Subject: [function] httpQuery GET and POST requests - update 0.3.5 |
http://www.opensource.org/licenses/zlib-license.php
Copyright (c) 2010 derRaphael & Heresy
This software is provided 'as-is', without any express or implied warranty. In no event will the au ... |
Topic: Ahk Standard Library Collection, 2010 Mar (+ Gui) ~ Libs: 69 |
DerRaphael
Replies: 72
Views: 4019
|
Forum: Scripts & Functions Posted: Fri Mar 05, 2010 9:14 am Subject: Ahk Standard Library Collection, 2010 Mar (+ Gui) ~ Libs: 69 |
...I don't "conform" to standards...
don't get me wrong, but in that case any discussion is obsolete, since we are talking about standard library files.
...case-in-point: who "won ... |
Topic: Ahk Standard Library Collection, 2010 Mar (+ Gui) ~ Libs: 69 |
DerRaphael
Replies: 72
Views: 4019
|
Forum: Scripts & Functions Posted: Thu Mar 04, 2010 9:58 pm Subject: Ahk Standard Library Collection, 2010 Mar (+ Gui) ~ Libs: 69 |
...I, as an author, will choose whatever prefix I want, as my preferred prefix, I will not change mine just because "its taken" by someone else...
of course, you - as an author - are free ... |
Topic: stdLib: call for information |
DerRaphael
Replies: 34
Views: 1211
|
Forum: General Chat Posted: Fri Feb 26, 2010 9:57 am Subject: stdLib: call for information |
| The difference of your implementation is, that it is online. Whereas I was thinking of a simple offline database. Your solution sounds very interesting. Btw, here is my workaround solution until someo ... |
Topic: stdLib: call for information |
DerRaphael
Replies: 34
Views: 1211
|
Forum: General Chat Posted: Tue Feb 23, 2010 10:13 pm Subject: stdLib: call for information |
i pestered titan about retrieving remote hashes from ahk.net. there once was such a feature but has silently been removed due to maintenance work. now a similar feature is online again.
Thank you, ... |
Topic: Doc-O-Matic: AutoHTML Documentation for AHK-Scripts (Beta) |
DerRaphael
Replies: 6
Views: 609
|
Forum: Scripts & Functions Posted: Mon Feb 22, 2010 11:22 pm Subject: Doc-O-Matic: AutoHTML Documentation for AHK-Scripts (Beta) |
| -reserved for plugins index- |
Topic: Doc-O-Matic: AutoHTML Documentation for AHK-Scripts (Beta) |
DerRaphael
Replies: 6
Views: 609
|
Forum: Scripts & Functions Posted: Mon Feb 22, 2010 11:15 pm Subject: Doc-O-Matic: AutoHTML Documentation for AHK-Scripts (Beta) |
Hi all,
Doc-O-Matic is a script, capable of tracking functions in a different AHK script and generating a HTML documentation from it.
It also supports Syntax Hiliting and inline linking to funct ... |
Topic: stdLib: call for information |
DerRaphael
Replies: 34
Views: 1211
|
Forum: General Chat Posted: Mon Feb 22, 2010 10:23 pm Subject: stdLib: call for information |
| i'd love to see an account opened on ahk.net and interested developers working on the same svn repository. this way only one account has to be managed and the sources are public available and can be m ... |
Topic: [examples+minituts] The GDI+ Examplecodes thread |
DerRaphael
Replies: 56
Views: 14413
|
Forum: Scripts & Functions Posted: Mon Feb 22, 2010 8:46 am Subject: [examples+minituts] The GDI+ Examplecodes thread |
Toc updated, thx, ih57452
btw, is there a possibility to make this work with a radar outside the us, such as europe?
dR |
Topic: Run a script on a remote computer |
DerRaphael
Replies: 17
Views: 17731
|
Forum: Scripts & Functions Posted: Sun Feb 21, 2010 4:29 pm Subject: Run a script on a remote computer |
I did not, as it jumped up by this guest.
(how about some hard Capcha for guests?)
Yet itīs a topic worth keeping up-to-date.
... web server in AHK? Genius proof of concept, but why sho ... |
Topic: Detect Open/Save dialog |
DerRaphael
Replies: 4
Views: 3148
|
Forum: Scripts & Functions Posted: Sun Feb 21, 2010 4:16 pm Subject: Detect Open/Save dialog |
i felt that this log time ago written script somehow fits into this topic
#Persistent
SetTimer, testWindow, 100
testWindow:
ActiveHWND := WinActive("A")
TargetC ... |
| |