Search found 31 matches

by A random guy
07 Dec 2017, 17:40
Forum: Scripts and Functions (v1)
Topic: Universal Clipboard
Replies: 0
Views: 901

Universal Clipboard

Just a simple script that shares your clipboard with other computers using a ftp server. To setup you must have a folder (on the ftp server) called "UniClip" with a txt file called "clips.txt" inside it. Then edit the script to match your Ftp settings. Press Ctrl+Win+C for copying to universal clipb...
by A random guy
22 Oct 2017, 18:35
Forum: Ask for Help (v1)
Topic: How to run more than one cmd command at once? Topic is solved
Replies: 2
Views: 1591

How to run more than one cmd command at once? Topic is solved

Im trying to do some ftp automation stuff but i need some help

I can run multiple cmd commands like this

Code: Select all

run, %comspec% /k ipconfig & help
yet this doesnt work

Code: Select all

run, %comspec% /k ftp & open localhost & username & password
what am i doing wrong?
by A random guy
29 Apr 2017, 16:04
Forum: Off-topic Discussion
Topic: Help Wanted - AHK Developers
Replies: 3
Views: 1501

Re: Help Wanted - AHK Developers

Really Don't Recommend posting job offers on a forum but whatever, this is the off topic section anyways.
by A random guy
22 Apr 2017, 17:43
Forum: Wish List
Topic: Replace Home Redirect
Replies: 2
Views: 1481

Re: Replace Home Redirect

yeah your right but the home button is the first you would click to go the home page of this forum
by A random guy
18 Apr 2017, 17:31
Forum: Wish List
Topic: Replace Home Redirect
Replies: 2
Views: 1481

Replace Home Redirect

Whenever I click on the home button it keeps taking me to the autohotkey website, and i hate that!! It should take me to home page OF THIS FORUM
by A random guy
26 Mar 2017, 10:54
Forum: Ask for Help (v1)
Topic: Check if YouTube video is paused.
Replies: 2
Views: 1277

Re: Check if YouTube video is paused.

And how would I check that with autohotkey?
by A random guy
25 Mar 2017, 16:54
Forum: Ask for Help (v1)
Topic: Check if YouTube video is paused.
Replies: 2
Views: 1277

Check if YouTube video is paused.

How would I check if a YouTube video on chrome is currently playing. This was easy before YouTube used html5.
by A random guy
17 Mar 2017, 19:12
Forum: Ask for Help (v1)
Topic: Sending Messages using Postmessage between two instances. Topic is solved
Replies: 5
Views: 1806

Sending Messages using Postmessage between two instances. Topic is solved

So if i have two instances of the same script then how can i (using Postmessage and onmessage) send a message from the second instance to the first instance and not to itself
by A random guy
16 Mar 2017, 19:19
Forum: Ask for Help (v1)
Topic: Login
Replies: 24
Views: 8848

Re: Login

here is a simple version. m'welcome

Code: Select all

InputBox, Password, Type password, Enter Password Here, hide
if ErrorLevel
ExitApp
else
If Password = ENTER PASSWORD HERE
Goto, Correct
Else
{
MsgBox, 16, Incorrect!, Password Not Correct!
ExitApp
}

Correct:
;Insert code here
by A random guy
14 Mar 2017, 19:52
Forum: Ask for Help (v1)
Topic: Changing Global Variable Not Working! Topic is solved
Replies: 4
Views: 3917

Re: Changing Global Variable Not Working! Topic is solved

Ok I Got it! I had to change Lol := %wParam% to Lol = %wParam% and now it works perfectly
by A random guy
14 Mar 2017, 19:40
Forum: Ask for Help (v1)
Topic: Changing Global Variable Not Working! Topic is solved
Replies: 4
Views: 3917

Re: Changing Global Variable Not Working! Topic is solved

Sorry but that doesnt work. It stills sets it as a local variable for test
by A random guy
14 Mar 2017, 17:55
Forum: Ask for Help (v1)
Topic: Changing Global Variable Not Working! Topic is solved
Replies: 4
Views: 3917

Changing Global Variable Not Working! Topic is solved

Sorry for being so stupid, but why doesnt this script work!!?? I making it so the script displays a message when lol = 1. When the script gets i message from a another script then i want it to change the variable to whatever the Wparam is. Lol = 0 OnMessage(0x5577, "Test") Loop { if Lol = 1 { msgbox...
by A random guy
11 Mar 2017, 20:15
Forum: Ask for Help (v1)
Topic: How can i run two loops at the same time Topic is solved
Replies: 2
Views: 1409

How can i run two loops at the same time Topic is solved

So i'm trying to run a loop while checking for a message from another script. This is not my actual code but has the same concept. Test = 1 OnMessage(0x5555, "MsgMonitor") ; this is the loop loop { if Test = 1 { msgbox, 4144, test, test sleep, 60000 } } ; this is what i want while that loop is happe...
by A random guy
11 Mar 2017, 19:57
Forum: Off-topic Discussion
Topic: Controlling a computer using a phone
Replies: 10
Views: 12102

Re: Controlling a computer using a phone

interesting!
by A random guy
11 Mar 2017, 19:54
Forum: Ask for Help (v1)
Topic: How to block the keyboard Topic is solved
Replies: 3
Views: 1417

Re: How to block the keyboard Topic is solved

Thanks I didn't run it as administrator. I wonder why windows lets me block the mouse though without running it as administrator
by A random guy
11 Mar 2017, 19:53
Forum: Ask for Help (v1)
Topic: How to check if a instance is already running? Topic is solved
Replies: 11
Views: 5937

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

Where did you expect a variable to change? I guess you want to send data from Instance #2 back to Instance #1? In that case, you need to write code to send data from the second instance back to the first, it won't happen otherwise. There are many ways to send data between two scripts, including two...
by A random guy
02 Mar 2017, 21:27
Forum: Ask for Help (v1)
Topic: How to check if a instance is already running? Topic is solved
Replies: 11
Views: 5937

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

OK so i tested using your script but the variable doesn't change when opening the second instance. Here is the script in its basic form Unlocked = 1 MutexName := "qwerty" If DllCall("OpenMutex", Int, 0x100000, Int,NULL, Str,MutexName) Gosub, AlreadyRunning hMutex := DllCall("CreateMutex", Int,NULL, ...
by A random guy
01 Mar 2017, 18:01
Forum: Ask for Help (v1)
Topic: How to check if a instance is already running? Topic is solved
Replies: 11
Views: 5937

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

Can this work. It's just a example #NoEnv #SingleInstance, Off SetWorkingDir, %A_ScriptDir% MutexName := "qwerty" ;----------------------------------- ; check named mutex object ;----------------------------------- If DllCall("OpenMutex", Int, 0x100000, Int,NULL, Str,MutexName) Gosub, AlreadyRunning...

Go to advanced search