Search found 179 matches
- 17 Aug 2019, 12:54
- Forum: Offtopic
- Topic: Liber Primus - 3301
- Replies: 0
- Views: 1297
Liber Primus - 3301
Hello darkness my old friend, we meet again... ;) I know there are lots of great minds here in the AHK Forum :geek: So here I am, trying to spark a few Neuron cells on your brilliant brain :lol: Long story short, you may already heard (or haven't heard at all) of internet's treasure hunt that consi...
- 23 Oct 2018, 01:48
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4477
- Views: 1066655
Re: « What's on your mind? »
Is the phpBB logo on upper left intended? Or did someone forget to change it back to AHK logo?
- 21 Sep 2018, 19:21
- Forum: Wish List
- Topic: [Request]: Official Library & Wrapper
- Replies: 108
- Views: 29706
Re: [Request]: Official Library & Wrapper
just exactly what problem are you all attempting to solve with this? i think you're creating a solution for a problem that doesn't exist, or isn't clearly defined. if someone needs a lib, is it that hard for them to find? a few extra clicks to download a .zip from github or the forums? is it worth ...
- 21 Sep 2018, 07:14
- Forum: J'ai besoin d'aide
- Topic: WinAmp - Comment sélectionner la bonne Fenêtre ? Topic is solved
- Replies: 4
- Views: 3201
Re: WinAmp - Comment sélectionner la bonne Fenêtre ? Topic is solved
Pas vraiment répondre à votre question, mais peut-être que vous pouvez trouver quelque chose d'utile à partir de ce script
- 21 Sep 2018, 06:44
- Forum: Wish List
- Topic: [Request]: Official Library & Wrapper
- Replies: 108
- Views: 29706
Re: [Request]: Official Library & Wrapper
Before jumping into a conclusion, let's do some brainstorm first about how it will looks like. Where the code will be hosted? (Git based / Cloud Storage / other) Do we need a redundant mirror / backup storage? How can people contribute to the lib? (Add new code / modify / bugfix / delete obsolete co...
- 21 Sep 2018, 06:12
- Forum: Ask For Help
- Topic: Optimizing varibles and random numbers Topic is solved
- Replies: 1
- Views: 697
Re: Optimizing varibles and random numbers Topic is solved
Loop, 5 { Random, rand%A_Index%, -2,2 } MsgBox %rand1%`n%rand2%`n%rand3%`n%rand4%`n%rand5% ExitApp function() { Loop, 30 { Random, rand%A_Index%, -2,2 } Loop, 4 { Random, time%A_Index%, 10,90 } Loop, 9 { Random, idx1, 1,30 Random, idx2, 1,30 global posX%A_Index% := (fx+(rand%idx1%+rand%idx2%)) glob...
- 21 Sep 2018, 06:07
- Forum: Ask For Help
- Topic: Résumé: Definitely no way back to ICO?
- Replies: 8
- Views: 1808
- 17 Sep 2018, 12:43
- Forum: Wish List
- Topic: [Request]: Official Library & Wrapper
- Replies: 108
- Views: 29706
Re: [Request]: Official Library & Wrapper
Let's hear your idea, Tank.
What kind of 'centralized download' do you have in mind?
Would it has some kind of code reviewing before it got merged/uploaded, or something else perhaps?
What kind of 'centralized download' do you have in mind?
Would it has some kind of code reviewing before it got merged/uploaded, or something else perhaps?
- 15 Sep 2018, 02:28
- Forum: Wish List
- Topic: [Request]: Official Library & Wrapper
- Replies: 108
- Views: 29706
Re: [Request]: Official Library & Wrapper
that's exactly what the awesome-authotkey list is: https://github.com/ahkscript/awesome-AutoHotkey Yes, but I prefer actual code collection rather than just a 'bookmark'. unless of course youre expecting all the actual CODE of the libraries to all be in one place. but that is just absurd. each libr...
- 13 Sep 2018, 00:13
- Forum: Wish List
- Topic: [Request]: Official Library & Wrapper
- Replies: 108
- Views: 29706
Re: [Request]: Official Library & Wrapper
- Ultimately every list, even the 'official' list, is just someone's personal list. TBH it is, but at least we will have a unified lib compilation. Later, we can add more functionalities, fix bugs & implement user suggestions by using Git Pull Requests. The hardest thing is to take the first step :...
- 12 Sep 2018, 23:45
- Forum: Wish List
- Topic: [Request]: Official Library & Wrapper
- Replies: 108
- Views: 29706
Re: [Request]: Official Library & Wrapper
there is this list on github, where you could submit pull requests to add any libraries you want to share. matter of fact i'm going to do that now to add the GDIP AHKv2 version https://github.com/ahkscript/awesome-AutoHotkey Yes, I'm aware of that, but that's just a "bookmark" which links to anothe...
- 12 Sep 2018, 05:26
- Forum: Wish List
- Topic: [Request]: Official Library & Wrapper
- Replies: 108
- Views: 29706
[Request]: Official Library & Wrapper
I saw there are lots of users who posted their libs to make ahk usage easier, but I can't find any official compilation of libs & wrappers. What I mean is something like: Parser (XML, JSON, YAML) HTML Decode/Encode Additional math functions Third party wrapper (Excel, SQL, other popular apps) Networ...
- 12 Sep 2018, 02:53
- Forum: Other Utilities & Resources
- Topic: Direct links file storage
- Replies: 20
- Views: 7001
Re: Direct links file storage
If you need the capability of direct linking plus total control, you can just rent a cheap VPS ( <- ref link ) and setup a simple FTP (for example ftp://sub.domain.com/dir/file.txt) Or if you just need a temporary solution, you can get some sort of free diskspace from https://www.000webhost.com/ Edi...
- 10 Sep 2018, 21:09
- Forum: Ask For Help
- Topic: Basic auto run notepad + type
- Replies: 3
- Views: 1005
Re: Basics
Code: Select all
<!n::
msgbox ok
return
- 10 Sep 2018, 04:36
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4477
- Views: 1066655
- 06 Sep 2018, 01:07
- Forum: Offtopic
- Topic: Flat Earth vs. Globe Earth
- Replies: 100
- Views: 35502
Re: Flat Earth vs. Globe Earth
Maybe it's a Möbius stripjoedf wrote:In this scenario, it would mean we would have an infinite flat surface.

- 25 Aug 2018, 02:54
- Forum: Ask For Help
- Topic: label does not pass through vertically stacked hotkeys?
- Replies: 14
- Views: 2701
Re: label does not pass through vertically stacked hotkeys?
Try this
Code: Select all
gui, add, button, gbutton, test
gui, show
return
button:
msgbox, a
mylabel:
MsgBox, b
ExitApp
F1::
F2::
F3::
goto mylabel
- 22 Aug 2018, 22:21
- Forum: About This Community
- Topic: autohotkey.net up for grabs
- Replies: 47
- Views: 34408
Re: autohotkey.net up for grabs
What's the purpose of getting autohotkey.net domain back, only for script storage? If yes, then just use git hosting services, they usually give 'more than enough' storage for casual users. Note: I'm not endorsing any hosting services in this list . So my point is, there's no benefit of paying $3k j...
- 22 Aug 2018, 10:57
- Forum: Ask For Help
- Topic: Help with math please
- Replies: 9
- Views: 1866
Re: Help with math please
Hi, tomoe_uehara ! :wave: Try this... Hello wolf_II & garry, the script works great, Thanks! Maybe this will give a more homogeneous spread Sorry but I need the math, by using only the MouseMove command, AHK calculates the coordinates by itself, thus I can't accept this as accepted answer, sorry ;)...
- 22 Aug 2018, 10:39
- Forum: Tutorials
- Topic: [Help Requested]:Teamwork
- Replies: 42
- Views: 31235
Re: [Help Requested]:Teamwork
Spoiler
Both the wall and floor texture didn't get loaded.