Search found 61 matches

by coolykoen
14 Mar 2017, 02:08
Forum: Other Utilities & Resources
Topic: [CMD] gDrive - interacting with Google Drive
Replies: 6
Views: 5690

Re: [CMD] gDrive - interacting with Google Drive

BoBo wrote:gdrive is a command line utility for interacting with Google Drive.

[More...]

8-)
Correct me if i'm wrong, but isn't this just advertising? :think:
by coolykoen
08 Mar 2017, 07:22
Forum: Ask for Help (v1)
Topic: Software internet connection Topic is solved
Replies: 2
Views: 1433

Re: Software internet connection Topic is solved

Hi, I would like to know if there is a way to have a script check if the software executed in the script has connected to the internet before starting the following action. Thank you!! I don't exactly know how to code it, but i suppose you could do a ping to an internet address such as 8.8.8.8 (Goo...
by coolykoen
06 Mar 2017, 07:23
Forum: Ask for Help (v1)
Topic: Screenshot sorting by ImageSearch Topic is solved
Replies: 1
Views: 1422

Re: Screenshot sorting by ImageSearch Topic is solved

Wait, how is it already solved with no answer(s)...?

Also, i'd like to know how this was solved, very interesting topic in my opinion. :)
by coolykoen
28 Feb 2017, 20:59
Forum: Ask for Help (v1)
Topic: toggle spam?
Replies: 1
Views: 1016

Re: toggle spam?

This should do the trick. :)

Code: Select all

AutoFire = 0

*Z Up::
{
	If AutoFire = 0
	{
		Settimer, autofire, 10 ; Loops the code every 10 miliseconds
		AutoFire = 1
		Return
	}
	else
	{
		Settimer, autofire, Off ; Turns the loop (spam) off
		AutoFire = 0
		Return
	}
	Return
}

Autofire:
{
	Send, {z}
	Return
}
by coolykoen
28 Feb 2017, 20:42
Forum: Ask for Help (v1)
Topic: How to check if a instance is already running? Topic is solved
Replies: 11
Views: 6098

Re: How to check if a instance is already running? Topic is solved

if you want it to just make sure there is never more than one instance of the script running, all you have to do is place this at the top of your script:

Code: Select all

#SingleInstance, Ignore
That tells the script to check wether it's already running, and if it is, closes itself.
by coolykoen
23 Sep 2016, 11:11
Forum: Ask for Help (v1)
Topic: Mapping right Ctrl to Windows key no longer works
Replies: 4
Views: 3349

Re: Mapping right Ctrl to Windows key no longer works

I'm sorry to say this but... on my end "RCtrl::RWin" works just fine... maybe you could try redownloading autohotkey so you have the latest version etc, but otherwise, i don't know what could cause the issue. Actually, i do have 1 other idea, could it be that the laptop keyboard's RCtrl is controlle...
by coolykoen
22 Sep 2016, 14:55
Forum: Scripts and Functions (v1)
Topic: Constantly changing colour GUI - Autohotkey
Replies: 8
Views: 3470

Re: Constantly changing colour GUI - Autohotkey

Awesome! just one thing.... why did you change it to shutdownvar this time? :D you destroyed you uniqueness (if that's even a word) :D Hehe :HeHe: Well, true but I figured people would have trouble understanding what shutdowmvar actually did ;) Thanks, this is what i'll be using in all my automated...
by coolykoen
19 Sep 2016, 10:02
Forum: Scripts and Functions (v1)
Topic: Constantly changing colour GUI - Autohotkey
Replies: 8
Views: 3470

Re: Constantly changing colour GUI - Autohotkey

footballmonkeey wrote:Hehe :HeHe: Well, true but I figured people would have trouble understanding what shutdowmvar actually did ;)
Well... yea i understand that :D
by coolykoen
16 Sep 2016, 07:24
Forum: Ask for Help (v1)
Topic: How can I detect which display taskbar buttons are on?
Replies: 1
Views: 938

Re: How can I detect which display taskbar buttons are on?

I would like to know this too.... too bad no one knows/says anything.
by coolykoen
16 Sep 2016, 06:25
Forum: Scripts and Functions (v1)
Topic: Constantly changing colour GUI - Autohotkey
Replies: 8
Views: 3470

Re: Constantly changing colour GUI - Autohotkey

Nice modifications Coolykoen, everything works just fine. :) Here's the closest I got to your reference, though feel free to experiment with the upper and lower values as well as the speed: ;script by footballmonkeey ;Modified by Coolykoen /* Shutdownvar = duration of GUI in seconds CSpeedVar = how...
by coolykoen
15 Sep 2016, 12:25
Forum: Scripts and Functions (v1)
Topic: Constantly changing colour GUI - Autohotkey
Replies: 8
Views: 3470

Re: Constantly changing colour GUI - Autohotkey

Thanks coolykoen! Yeah, you know I thought about naming it shutdownvar, but it would be too obvious what it does, so I thought shutdowmvar would make it a bit of a mystery :angel: Something like this? or do you have any references? That code is almost right, but heres the reference: https://www.you...
by coolykoen
15 Sep 2016, 09:20
Forum: Scripts and Functions (v1)
Topic: Constantly changing colour GUI - Autohotkey
Replies: 8
Views: 3470

Re: Constantly changing colour GUI - Autohotkey

Really awesome script! but i have to say.... "shutdowmvar" instead of "shutdownvar"? ;)
EDIT: do you also have a version that does it like windows 10? (only blue color and breathing animation)
by coolykoen
30 May 2016, 12:50
Forum: Ask for Help (v1)
Topic: Making AHK doing 2 things at the same time
Replies: 3
Views: 1342

Re: Making AHK doing 2 things at the same time

I want a script to do a loop , this loop will continue happening until a time (determined and created in the same script) runs out. Take a look at this: #Persistent ; keeps the script running until "ExitApp" is executed SetTimer, TheLoop, 20 ; sets the loop to repeat itself every 20 miliseconds Set...
by coolykoen
30 May 2016, 05:58
Forum: Ask for Help (v1)
Topic: Mapping Right-Ctrl to right Windows key in Win 10
Replies: 2
Views: 1541

Re: Mapping Right-Ctrl to right Windows key in Win 10

Try this:

Code: Select all

RCtrl::RWin
lemme know if that works for you :)
by coolykoen
27 May 2016, 14:12
Forum: Ask for Help (v1)
Topic: Easy way to find and edit the script?
Replies: 2
Views: 993

Re: Easy way to find and edit the script?

IIRC, it was easy by using the AHK icon, which I copied to the Quick Launch Bar, by using its context menu, to call up the script for further editing. In fact I thought there were 2 or 3 references to the script in the context menu of the icon. But yesterday, I fouled up the shortcut, dl'd a more r...
by coolykoen
26 May 2016, 08:26
Forum: Ask for Help (v1)
Topic: a noob question
Replies: 1
Views: 767

Re: a noob question

Try this:

Code: Select all

*Numpad1::
{
	Send, {enter}
	Send, `|
	Send, {enter}
}
Return
Hope that helps :)
by coolykoen
26 May 2016, 01:42
Forum: Gaming Help (v1)
Topic: Hello, I would like some help correcting a script.
Replies: 1
Views: 965

Re: Hello, I would like some help correcting a script.

Why don't you try this?:

Code: Select all

Numpad3::
{
	Send, 902902901
	return
}
And may i ask what the "sleep 500" is for? here is a version that will use those too:

Code: Select all

Numpad3::
{
	Send, 902
	Sleep, 500
	Send, 902
	Sleep, 500
	Send, 901
	return
}
Hope that helps :)
by coolykoen
26 May 2016, 01:32
Forum: Gaming Help (v1)
Topic: AutoClicker
Replies: 1
Views: 1001

Re: AutoClicker

In need of help making an AutoClicker Script. I want to be able to click roughly 12 Clicks per second (70 Milliseconds) with being able to toggle with F. Also I'm not sure if this is possible but could you make another script to toggle on and off the whole autoclicker script because if I have that ...
by coolykoen
25 May 2016, 06:40
Forum: Ask for Help (v1)
Topic: Background Window Typing Topic is solved
Replies: 19
Views: 8919

Re: Background Window Typing Topic is solved

Guest wrote:
coolykoen wrote:Sure thing:

Code: Select all

*W::ControlSend,,W,ahk_class Notepad
Thank you, now I just need a way to not remap every single key.
yea sorry, thats the 1 thing im not sure about :/
by coolykoen
25 May 2016, 06:25
Forum: Ask for Help (v1)
Topic: Background Window Typing Topic is solved
Replies: 19
Views: 8919

Re: Background Window Typing Topic is solved

i know there is a better way to do it, instead of having to do this for EVERY key, there should be a way to do that in one command i think... but i'm not sure how to do that. That's what I'm looking for, but without sending inputs to the active window. Sure thing: *W::ControlSend,,W,ahk_class Notep...

Go to advanced search