Search found 853 matches
- 13 Jun 2018, 08:35
- Forum: Ask For Help
- Topic: Trying to put multiple scripts in one file
- Replies: 4
- Views: 362
Re: Trying to put multiple scripts in one file
Where you have two things both named SendKey they conflict. If you rename them to be SendKey1 and SendKey2 they will not conflict anymore. Also, AutoHotkey can't sleep for less than ~15ms so trying to sleep for 0.000000000000001 milliseconds is somewhat pointless. Using 1 would have the same effect....
- 11 Jun 2018, 18:56
- Forum: Scripts and Functions
- Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
- Replies: 188
- Views: 57169
Re: [Script] CodeQuickTester - Write and run code without saving to a temporary file
Somewhat, memory doubles when the open/save dialog is active(receding only when inactive) & there's a similar CPU spike, but fairly consistent RAM usage relative to open size of open script. I'm thinking possibly the problem was that i had too many windows open, though i can't see how it's the caus...
- 08 Jun 2018, 15:43
- Forum: Tips and Tricks
- Topic: GeekDude's Tips, Tricks, and Standalones
- Replies: 34
- Views: 20734
Re: GeekDude's Tips, Tricks, and Standalones
This post has been updated! Two new sections, GUIs and Regular Expressions!
- 08 Jun 2018, 15:41
- Forum: Scripts and Functions
- Topic: [Script] Markdown to BBCode Converter
- Replies: 5
- Views: 1430
[Script] Markdown to BBCode Converter
Markdown to BBCode Converter Write your forum posts in Markdown and convert them to BBCode for display on the forum. Very useful for publishing scripts stored on GitHub! https://gist.githubusercontent.com/G33kDude/349c4b88f4f047692c1a33b2a9677857/raw/demo.gif Usage Simply paste in your markdown cod...
- 08 Jun 2018, 10:56
- Forum: Ask For Help
- Topic: Some help with regex and ReplaceRegex() method
- Replies: 3
- Views: 380
Re: Some help with regex and ReplaceRegex() method
It's not clear what information you want specifically, but it sounds like you want to get the contents of <ul class="tag-group"> that is a child of <div class="content-type-text"> right? You should be able to get the exact data you need using only IE's querySelector / querySelectorAll methods. To se...
- 08 Jun 2018, 09:09
- Forum: Scripts and Functions
- Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
- Replies: 188
- Views: 57169
Re: [Script] CodeQuickTester - Write and run code without saving to a temporary file
Hi i dunno if it a can be called a bug, but i was using it for like 8hours straight last night and it seemed the longer i used it the wonkier the auto-completion, and the slower it got overall, i had like 6separate (CodeQuickTester)windows open, and the largest script i had open was no more than a ...
- 04 Jun 2018, 18:10
- Forum: Ask For Help
- Topic: Keystroke recorder Topic is solved
- Replies: 3
- Views: 716
Re: Keystroke recorder Topic is solved
AutoHotkey is only accurate to 15ms at best, which is a whole frame at 60fps. That being said, there are a number of tools available to help you record and play back your actions. As far as I remember, Pulover's Macro Creator offers record and playback, but I haven't used it myself. One tool I have ...
- 04 Jun 2018, 07:09
- Forum: Scripts and Functions
- Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
- Replies: 188
- Views: 57169
Re: [Script] CodeQuickTester - Write and run code without saving to a temporary file
Great idea to allow a settings file - so users can keep their custom font sizes, colors etc from version to version. Would you please provide a sample settings.ini or give a few guidelines what the ini-file must look like? There are instructions and a template in the original post if this thread, u...
- 02 Jun 2018, 21:54
- Forum: Scripts and Functions
- Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
- Replies: 188
- Views: 57169
Re: [Script] CodeQuickTester - Write and run code without touching the file system
CodeQuickTester v2.7 has been released Please see the original post for a link to the release and revision history pages. Changes Improved script options menu file selector default folders/files Fixed help file integration when only IE8 is available Various improvements to Wine compatibility Reorga...
- 30 May 2018, 17:47
- Forum: Ask For Help
- Topic: Externally calling a function from running AHK script
- Replies: 8
- Views: 902
Re: Externally calling a function from running AHK script
Another option would be to use my library RemoteObj.ahk to expose a socket-based API. You can connect to the socket using Java and send a little bit of JSON to invoke the API. https://github.com/G33kDude/RemoteObj.ahk e.g. if you expose an AHK class instance called Tools which has a method ReturnVal...
- 29 May 2018, 18:12
- Forum: Ask For Help
- Topic: Help understanding autohotkey virus
- Replies: 14
- Views: 2680
Re: Help understanding autohotkey virus
If anyone wants a copy of the script I wrote to help decode the malware, send me a private message or contact me on IRC/Discord (see the link in my signature). It's pretty specific to that exact script, and wouldn't be of too much use for decoding other scripts.
- 29 May 2018, 09:01
- Forum: Ask For Help
- Topic: Help understanding autohotkey virus
- Replies: 14
- Views: 2680
Re: Help understanding autohotkey virus
I wrote a script to deobfuscate the malware, though I won't share it here. It's a neat piece of software though the code is pretty sloppy. It's definitely designed for a bitcoin mining botnet. However, it could be updated to do something else in the future. Some of the things it does: Registers a sc...
- 24 May 2018, 09:25
- Forum: Scripts and Functions
- Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!
- Replies: 166
- Views: 60072
Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!
Not an earth-shattering change, but I added the -incognito flag to the Run command in attempt to get Chrome to stop showing all sorts of annoying alerts and pop-ups... Some other good flags I've seen around the net are --no-first-run and --disable-extensions . You don't necessarily have to modify t...
- 18 May 2018, 19:39
- Forum: Scripts and Functions
- Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
- Replies: 188
- Views: 57169
Re: [Script] CodeQuickTester - Write and run code without touching the file system
One more thing i noticed,if a string contains a integer it's split into multiple strings instead of being one,i.e Unicode2Ascii is only autocompleted as 'Unicode' and 'Ascii' not as one string, i understand the reasons for this, especially symbols but i think exceptions should be made for integers ...
- 18 May 2018, 11:48
- Forum: Scripts and Functions
- Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!
- Replies: 166
- Views: 60072
Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!
The delay is caused by decoding chrome's response from a JSON message into an AHK object. Like with IE, the browser responds with the source immediately. However, IE responds with the text directly, and Chrome responds with a JSON blob that contains the text but must be decoded into a useful form. B...
- 18 May 2018, 07:33
- Forum: Scripts and Functions
- Topic: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!
- Replies: 166
- Views: 60072
Re: [Library] Chrome.ahk - Automate Google Chrome using native AutoHotkey. No Selenium!
It will be very powerful instrument! :) In "Source code (zip)" - link => in "Chrome.ahk" file => in 72 code-line have a one missing letter "t" (...\App Pahs\chrome.exe). My bad, I'll fix it in the next release. Thanks for pointing it out! Can I ask you to add the name of the function to the constru...
- 18 May 2018, 07:06
- Forum: Ask For Help
- Topic: processing limitations or reasons not to use ahk for larger programs?
- Replies: 6
- Views: 880
Re: processing limitations or reasons not to use ahk for larger programs?
Some examples of large projects done using AutoHotkey:
http://www.eithermouse.com/
http://lintalist.github.io/
https://autohotkey.com/boards/viewtopic.php?f=6&t=300 (over 13000 lines of compact code)
http://www.macrocreator.com/screenshots/
http://www.eithermouse.com/
http://lintalist.github.io/
https://autohotkey.com/boards/viewtopic.php?f=6&t=300 (over 13000 lines of compact code)
http://www.macrocreator.com/screenshots/
- 15 May 2018, 09:36
- Forum: Forum Issues
- Topic: AutoHotkey.net domain hijacked
- Replies: 16
- Views: 3137
Re: AutoHotkey.net domain hijacked
Google and the AutoHotkey forum are not the only places that link to ahk.net though. There are numerous other links online that would need to be changed which are out of control of any staff here, and I'd bet there are links offline embedded into various scripts people have downloaded. One such exam...
- 15 May 2018, 09:32
- Forum: Scripts and Functions
- Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
- Replies: 188
- Views: 57169
Re: [Script] CodeQuickTester - Write and run code without touching the file system
THAT'S WHAT I WAS SAYIN' :superhappy: , is it going to be an update? It's not quite ready for prime time, but here's a copy of my current test https://p.ahkscript.org/?p=9937466b Let me know what you think! I'm sure there's some aspects of it that I haven't considered but as far as functionality go...
- 15 May 2018, 09:20
- Forum: Forum Issues
- Topic: AutoHotkey.net domain hijacked
- Replies: 16
- Views: 3137
Re: AutoHotkey.net domain hijacked
I don't know about anyone else, but I'd be willing to donate toward a fund for reclaiming the domain