Search found 1352 matches

by Capn Odin
12 Dec 2017, 11:34
Forum: Ask for Help (v1)
Topic: Press Alt Command and then digits Y01 and next Y14
Replies: 2
Views: 734

Re: Press Alt Command and then digits Y01 and next Y14

As far as I know send, {y14} is not a valid key. If you mean the sequence of key presses y followed by 1 followed by 4 the you need to remove the {}.

And this is not the right place to ask for help, we have a dedicated sub-forum for this.
by Capn Odin
11 Dec 2017, 08:21
Forum: Ask for Help (v1)
Topic: Can't find script
Replies: 24
Views: 8529

Re: Can't find script

I am sorry, but I can't understand how you are able to run a script, that you don't know the location of, on a new computer when it doesn't run at startup.

How do you run it is it a shortcut or an executable on the desktop ?
by Capn Odin
10 Dec 2017, 20:11
Forum: Ask for Help (v1)
Topic: Can't find script
Replies: 24
Views: 8529

Re: Can't find script

Try opening the task manager, then choose startup and right click your script and click "Open file location".

Edit: are you talking about a "compiled" script ?
are you ruining a .exe to start your hotstrings ?
by Capn Odin
10 Dec 2017, 18:55
Forum: Ask for Help (v1)
Topic: Can't find script
Replies: 24
Views: 8529

Re: Can't find script

if it has a tray icon you can right click it and choose "Edit This Script" then "Save As".
Edit: But I don't know how the script would start on its own on a new computer.
by Capn Odin
09 Dec 2017, 12:08
Forum: Off-topic Discussion
Topic: AHKathon! [AHK Hackathon] 12/17
Replies: 80
Views: 31838

Re: AHKathon! [AHK Hackathon] 12/17

I pronounce the AHK as the individual characters in danish and the rest as athon. The name of the char H in english feel unnatural to me, so I guess I unconsciously avoid it.
by Capn Odin
08 Dec 2017, 18:56
Forum: Off-topic Discussion
Topic: AHKathon! [AHK Hackathon] 12/17
Replies: 80
Views: 31838

Re: AHKathon! [AHK Hackathon] 12/17

For my entry, I took the liberty to deviate quite a bit from the task. Instead of auto-click, for which I have not felt a need so far, I wrote CheeseCrumbs, a recorder that looks around the place where you click, records the bitmap, and creates code to insert that into any script you're writing. By...
by Capn Odin
08 Dec 2017, 15:58
Forum: Off-topic Discussion
Topic: AHKathon! [AHK Hackathon] 12/17
Replies: 80
Views: 31838

Re: AHKathon! [AHK Hackathon] 12/17

This is not my entry. #Include AutoColourClickerClass.ahk SetBatchLines -1 lst := [] RButton & LButton:: Critical lst.Push(new AutoColourClicker()) MouseGetPos, x, y While(GetKeyState("LButton", "P")) { MouseGetPos, x2, y2 if(oldx2 != x2 && oldy2 != y2) { lst[lst.MaxIndex()].Draw(x, y, x2 - x, y2 - ...
by Capn Odin
07 Dec 2017, 19:59
Forum: Ask for Help (v1)
Topic: AHKathon Brainstorm
Replies: 2
Views: 519

Re: AHKathon Brainstorm

I have decided on trying to make an Auto-Colour-Clicker.
by Capn Odin
07 Dec 2017, 01:18
Forum: Ask for Help (v1)
Topic: OnMessage - Multiple Functions registered for a single MsgNumber! Topic is solved
Replies: 22
Views: 3313

Re: OnMessage - Multiple Functions registered for a single MsgNumber! Topic is solved

I feel so bad having missed this in the docs I decided to fabricate the reason it wasn't working. Like simulated threads ever is a problem.
by Capn Odin
06 Dec 2017, 20:24
Forum: Ask for Help (v1)
Topic: OnMessage - Multiple Functions registered for a single MsgNumber! Topic is solved
Replies: 22
Views: 3313

Re: OnMessage - Multiple Functions registered for a single MsgNumber! Topic is solved

I mean onmessage(0x200, "coord") Coord() { X() Y() } or onmessage(0x200, "coord") Coord() { X++ Y++ ToolTip, % X ", " y } Edit: from the docs it seems that the problem may be that they are called too fast for the functions to terminate so the X() will never resolve since only one thread per register...
by Capn Odin
06 Dec 2017, 19:48
Forum: Ask for Help (v1)
Topic: I need help to combine three keys
Replies: 1
Views: 353

Re: I need help to combine three keys

I don't understand what you want each key to do.
by Capn Odin
06 Dec 2017, 19:41
Forum: Ask for Help (v1)
Topic: AHKathon Brainstorm
Replies: 2
Views: 519

AHKathon Brainstorm

If this is in the wrong place I apologize. I am not a very creative individual, and I assume I am not alone with this issue. So I suggest that we all try thinking of things related to auto clicking that have yet to be done. With out this I feel that at least I won't be able to participate any furthe...
by Capn Odin
06 Dec 2017, 17:15
Forum: General Discussion
Topic: A Github organisation for ahkscript
Replies: 247
Views: 191075

Re: A Github organisation for ahkscript

nnnik wrote:Yeah I know I don't have forking or repo access either.
Can't you fork any public repository ?
by Capn Odin
06 Dec 2017, 16:03
Forum: Off-topic Discussion
Topic: AHKathon! [AHK Hackathon] 12/17
Replies: 80
Views: 31838

Re: AHKathon! [AHK Hackathon] 12/17

BoBo wrote:I desperately request that this competition won't get started unless the AHK community is proudly owning its own homemade :arrow: Native Messaging Host :idea: :shifty: :silent: :mrgreen:
Will it be able to click ?
If so then maybe it will take second place.
by Capn Odin
06 Dec 2017, 12:03
Forum: Ask for Help (v1)
Topic: Replacement with variables?
Replies: 10
Views: 1481

Re: Replacement with variables?

I think that it will be easier if you explain exactly what you aim to replace in the string.
by Capn Odin
06 Dec 2017, 11:02
Forum: Ask for Help (v1)
Topic: Replacement with variables?
Replies: 10
Views: 1481

Re: Replacement with variables?

It works for me with your provided sample text.
by Capn Odin
06 Dec 2017, 08:14
Forum: Ask for Help (v1)
Topic: Replacement with variables?
Replies: 10
Views: 1481

Re: Replacement with variables?

Code: Select all

ClipBoard := RegExReplace(ClipBoard, "(?<=case )(\d*:) abc\d+/yz_", "$1")
by Capn Odin
04 Dec 2017, 21:45
Forum: Off-topic Discussion
Topic: AHKathon! [AHK Hackathon] 12/17
Replies: 80
Views: 31838

Re: AHKathon! [AHK Hackathon] 12/17

You are right, I had not thought of this what if someone borrows from my script and use it against me. How can I beat perfection.

Go to advanced search