Search found 179 matches
- 30 Mar 2017, 13:34
- Forum: Ask For Help
- Topic: AHK Add Checkboxes dynamically Topic is solved
- Replies: 3
- Views: 1004
Re: AHK Add Checkboxes dynamically Topic is solved
Something like this? Folder = %A_AppData%\HappyLoader Gui 2: -Sysmenu Gui 2: Add, Text,, Github/Download URL Gui 2: Add, Text, x350 y40 , Script Name Gui 2: Add, Edit, x10 y20 w200 h17 vURL Gui 2: Add, Edit, x350 y20 w100 h17 vName1 Gui 2: Add, Text, x10 y40 w500 vText1, Script will be saved in %fol...
- 30 Mar 2017, 12:52
- Forum: Ask For Help
- Topic: AHK Add Checkboxes dynamically Topic is solved
- Replies: 3
- Views: 1004
Re: AHK Add Checkboxes dynamically Topic is solved
Please give some example of the github links you want to download
- 30 Mar 2017, 12:44
- Forum: Ask For Help
- Topic: API server name could not be resolved Topic is solved
- Replies: 3
- Views: 1084
Re: API server name could not be resolved Topic is solved
Hello, your script works and it gives me this reply: RT/4.2.12-50-ga2e2d37 200 Ok id: ticket/777 Queue: Marketing Owner: Nobody Creator: mike.bar Subject: Das ist ein test mbk Status: new Priority: 0 InitialPriority: 0 FinalPriority: 0 Requestors: mike.[email protected].mail Cc: AdminCc: Created: Fri Feb 26 05...
- 30 Mar 2017, 12:39
- Forum: Ask For Help
- Topic: Remapping RWin to Flip3d while pertaining LWin
- Replies: 2
- Views: 448
Re: Remapping RWin to Flip3d while pertaining LWin
Hello, your code works for me in Windows 10. Rwin does Flip 3D while Lwin open the usual win menu.
- 29 Jan 2017, 07:47
- Forum: General Discussion
- Topic: Code Puzzle Thread
- Replies: 127
- Views: 47202
Re: Code Puzzle Thread
I'd say it's because of unclear objective
- 29 Jan 2017, 07:21
- Forum: Ask For Help
- Topic: Tool to convert Excel files to CSV
- Replies: 9
- Views: 4326
Re: Tool to convert Excel files to CSV
To separate each sheets: path = %1% SplitPath, path, , dir, , noext xl := ComObjCreate("Excel.Application").Workbooks.Open(path) count := xl.Worksheets.Count Loop, %count% { xl.Worksheets(A_Index).Activate name := xl.Worksheets(A_Index).Name outpath := dir . "\" . noext . "(" . name . ").csv" xl.Sav...
- 29 Jan 2017, 06:46
- Forum: Ask For Help
- Topic: script to copy content winthin subfolders
- Replies: 2
- Views: 551
Re: script to copy content winthin subfolders
Take a look at the example of FileCopy
- 14 Jan 2017, 13:29
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4491
- Views: 1069817
Re: « What's on your mind? »
Gladiabots: Because programming can be fun. [2]
- 04 Nov 2016, 14:51
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4491
- Views: 1069817
Re: « What's on your mind? »
Hello, I've just login to the forum again after several months (or years idk)
I just want to tell you all that on November 6th 2016, I'll have my wedding day..

I just want to tell you all that on November 6th 2016, I'll have my wedding day..

- 14 Jan 2016, 17:21
- Forum: About This Community
- Topic: New forum sections proposal.
- Replies: 113
- Views: 60328
Re: New forum sections proposal.
I only voted to 'Script ideas section'.
For 'Partially finished and abandoned scripts section' maybe a Wiki will be more suited than a Forum, because all people can edit (contribute) to finish/improve/optimize the script(s).
For 'Partially finished and abandoned scripts section' maybe a Wiki will be more suited than a Forum, because all people can edit (contribute) to finish/improve/optimize the script(s).
- 14 Jan 2016, 17:15
- Forum: Wish List
- Topic: Linux AutoHotkey version
- Replies: 12
- Views: 8904
Re: Linux AutoHotkey version
We have IronAHK which is basically AutoHotkey for Linux.
But the development is stopped because we don't have enough man power to continue the project
But the development is stopped because we don't have enough man power to continue the project
- 13 Dec 2015, 15:07
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4491
- Views: 1069817
Re: « What's on your mind? »
Well the power out usually varies from several minutes to several hours, I can't really tell the exact amount...
48 hours (@[email protected]')

- 12 Dec 2015, 06:42
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4491
- Views: 1069817
Re: « What's on your mind? »
I want to buy a UPS, it says that the battery capacity is 1250W with 75% efficiency, so it will be 937.5W
If I'm not mistaken, my PC's power supply is around 500W
My question is, for how long that UPS can sustain power for my PC?
Thank you
If I'm not mistaken, my PC's power supply is around 500W
My question is, for how long that UPS can sustain power for my PC?
Thank you

- 24 Nov 2015, 07:11
- Forum: Other Utilities & Resources
- Topic: [Tool] Battle Encoder Shirase
- Replies: 4
- Views: 3311
[Tool] Battle Encoder Shirase
Short story: One day I was converting some files using ffmpeg on command line, several minutes later I got an overheat warning on my processor. Then I immediately closed the ffmpeg and the temperature fell into normal again. So the problem was identified, and it was ffmpeg using 100% of the process...
- 24 Nov 2015, 06:50
- Forum: Offtopic
- Topic: How to surf more securely
- Replies: 27
- Views: 12215
- 16 Nov 2015, 21:26
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4491
- Views: 1069817
Re: « What's on your mind? »
Let's hangout on Discord sometimes <-- This is the invitation link
You don't need to be online 24/7, no need for bouncers, but currently has no bots yet
You don't need to be online 24/7, no need for bouncers, but currently has no bots yet

- 15 Nov 2015, 14:59
- Forum: Ask For Help
- Topic: Moving mouse FROM the original position
- Replies: 1
- Views: 766
Re: Moving mouse FROM the original position
Hello, welcome to Autohotkey forum! What you need is the MouseMove command. For example: MouseMove, 100, 100 ; This will move your mouse to coordinate x=100, y=100 MouseMove, 5, -10, 100, R ; This will move your mouse right by 5 pixel (x+5), and up by 10 pixel (y-10) from your current mouse positio...
- 15 Nov 2015, 14:18
- Forum: Gaming
- Topic: Diablo II - Multi instance
- Replies: 3
- Views: 1643
Re: Diablo II - Multi instance
I wonder if Sandboxie can fix that?
- 12 Nov 2015, 20:27
- Forum: Forum Issues
- Topic: Time between searches
- Replies: 9
- Views: 3568
Re: Time between searches
Yes, but I guess this issue doesn't matter anyway? Since we're going to archive the old forum (or not) 

- 12 Nov 2015, 20:15
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4491
- Views: 1069817
Re: « What's on your mind? »
Happy Diwali for all of those who celebrate it! :wave: http://www.coloring.com.co/wp-content/uploads/2012/11/Small-Rangoli-Design-Ideas-For-Diwali.jpg Anyway, another IRC alternative I prefer would be Slack and Discord Tomoe!!! Hello! welcome back :) Discord does look neat. Thanks ;) Hope you are w...