Search found 28 matches

by skribb
11 Oct 2022, 08:02
Forum: KeySharp
Topic: Keysharp - the resurrection of IronAHK
Replies: 216
Views: 99102

Re: Keysharp - the resurrection of IronAHK

tank wrote:
10 Oct 2022, 08:07
i know it seems silly but many of ahk's functionalities can be reduced to bash in *nix. or Python packages that could be ported or called directly since python is built into
based
by skribb
24 Sep 2022, 14:24
Forum: General Discussion
Topic: AHK_X11, AutoHotkey for Linux
Replies: 18
Views: 60746

Re: AHK_X11, AutoHotkey for Linux

Hellou, quick update: The following features are now implemented. - Hotkeys, Hotstrings - Compiler (create portable binaries) - Installer - Full docs - Send - GUIs (parts) - Tray icon - REPL (command line) Most autonomous commands are still missing, but it's definitely ready for testing by now. I d...
by skribb
24 Sep 2022, 14:23
Forum: KeySharp
Topic: Keysharp - the resurrection of IronAHK
Replies: 216
Views: 99102

Re: Keysharp - the resurrection of IronAHK

Just wanted to post an update that @burque505 has been helping me test over the past couple of months. He is testing daily, finding bugs, and I am fixing them. We are trying to work as fast as we can to get an initial release out, but it's slow going. The good news is that while we are finding bugs...
by skribb
23 Aug 2021, 16:32
Forum: Tips and Tricks (v1)
Topic: How to disable CTRL+ALt+DEL
Replies: 4
Views: 7666

Re: How to disable CTRL+ALt+DEL

no problem, glad it came of use. :dance:
by skribb
11 Jul 2021, 14:24
Forum: Tips and Tricks (v1)
Topic: How to disable CTRL+ALt+DEL
Replies: 4
Views: 7666

Re: How to disable CTRL+ALt+DEL

hmedia wrote:
10 Jul 2021, 20:24
Why people waste their energy trying to build these lock screen solutions is beyond me. Disabling task manager in favor of an autohotkey solution is an all round terrible idea. Address the problem directly.
bruh
by skribb
02 Mar 2019, 12:47
Forum: Scripts and Functions (v1)
Topic: Invisible Screen Lock
Replies: 1
Views: 1440

Invisible Screen Lock

In essence this will serve as an invisible lock screen, as almost any mouse and keyboard input will result in the workstation being locked. good for info / kiosk mode or if you just prefer seeing what's on your screen while it's locked. :) as per my comments in the script: the task here is to lock t...
by skribb
08 Jul 2017, 16:56
Forum: Ask for Help (v1)
Topic: FileAppend loop suddenly stopped creating txt file
Replies: 2
Views: 908

Re: FileAppend loop suddenly stopped creating txt file

Try removing this: If not ErrorLevel StringSplit does not return ErrorLevel. You could do this instead: if (FileItem0 > 1) FileAppend, %FileItem2%`n, L:\ArchonList.txt HTH Edit: fixed varname typo Thanks! it seemed to suffice with just removing If not ErrorLevel ,I wonder why the script has been wo...
by skribb
08 Jul 2017, 08:47
Forum: Ask for Help (v1)
Topic: FileAppend loop suddenly stopped creating txt file
Replies: 2
Views: 908

FileAppend loop suddenly stopped creating txt file

This script is supposed to create a text file based on the randomised FileList and for some reason it just doesn't work anymore. The text file is no longer created :crazy: FileDelete, L:\ArchonList.txt Sleep, 3000 FileList = Loop, L:\*.*, 0, 1 FileList = %FileList%%A_LoopFileTimeModified%`t%A_LoopFi...
by skribb
08 Jul 2017, 08:25
Forum: Ask for Help (v1)
Topic: Loop not working properly; AHK or Windows-related?
Replies: 5
Views: 1711

Re: Loop not working properly; AHK or Windows-related?

stuff stuff Seems to be working, I only did minor testing tho. Will report back if something happens :dance: Youcef what is your reason for making the script modular other than it being much prettier to read? Do you think it could have any bearing on the script's success rate? Loop { FileRead, head...
by skribb
07 Jul 2017, 20:11
Forum: Ask for Help (v1)
Topic: Loop not working properly; AHK or Windows-related?
Replies: 5
Views: 1711

Re: Loop not working properly; AHK or Windows-related?

boiler wrote:I suppose you're saying that you've changed the volume manually within the half hour since the script changed it, correct? Otherwise, why would you expect it to change the next time through the loop unless you've crossed one of the hour boundaries?
For test purposes I reset the volume manually yes
by skribb
07 Jul 2017, 14:38
Forum: Ask for Help (v1)
Topic: Loop not working properly; AHK or Windows-related?
Replies: 5
Views: 1711

Loop not working properly; AHK or Windows-related?

This loop is supposed to run in the background and set the volume of eventghost according to the current time (if my headphones are disabled; the flag of which is governed by eventghost). If I run the script it works the first time , because I notice that the volume level does indeed change for even...
by skribb
07 Jul 2017, 10:09
Forum: Tips and Tricks (v1)
Topic: How to disable CTRL+ALt+DEL
Replies: 4
Views: 7666

How to disable CTRL+ALt+DEL

this isn't really an AHK tutorial so I apologize in advance for being slightly off-topic, however it is relevant to AHK applications I'm working on a transparent screen lock which I know that many others have done here with varying levels of success. The problem usually is that you can still reach ...
by skribb
04 Apr 2017, 04:48
Forum: Ask for Help (v1)
Topic: If (A_WDay = 7 or 1) still true regardless of day
Replies: 2
Views: 1474

Re: If (A_WDay = 7 or 1) still true regardless of day

But why would the condition be true if the day is 2?

Doesn't "If (A_WDay = 7 or 1)" mean "if today is saturday or sunday" ?

This seems to be the correct syntax

Code: Select all

If (A_WDay = 7) or (A_WDay = 3)
{
	msgbox % A_WDay
}
by skribb
03 Apr 2017, 06:01
Forum: Ask for Help (v1)
Topic: If (A_WDay = 7 or 1) still true regardless of day
Replies: 2
Views: 1474

If (A_WDay = 7 or 1) still true regardless of day

Code: Select all

;1 is sunday
If (A_WDay = 7 or 1)  
{
	msgbox % A_WDay
}
Why does this msgbox appear even on a monday? :eh:
by skribb
16 Jan 2017, 01:31
Forum: Ask for Help (v1)
Topic: Blocking all input for 30 minutes
Replies: 2
Views: 957

Re: Blocking all input for 30 minutes

Thank you
by skribb
15 Jan 2017, 20:40
Forum: Ask for Help (v1)
Topic: Blocking all input for 30 minutes
Replies: 2
Views: 957

Blocking all input for 30 minutes

I stole this from another thread :) Loop { Input,v,, If InStr(ErrorLevel,"EndKey") Send % "{" SubStr(ErrorLevel,8) "}" } LButton:: MButton:: RButton:: LWin Up:: RWin Up:: XButton1:: XButton2:: My question is, where do I put the Sleep? I want the input to be blocked for a set period of time, 30 mins....
by skribb
14 Oct 2016, 11:17
Forum: Scripts and Functions (v1)
Topic: WinHttpRequest - A function similar to HttpRequest
Replies: 13
Views: 17098

Re: WinHttpRequest - A function similar to HttpRequest

Hey guys, trying to control my LIFX but I'm receiving errors (Missing "key" in object literal, and the affected line is the headers := { "Authorization": "Bearer " . token , } ): #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assi...
by skribb
14 Oct 2016, 10:48
Forum: Ask for Help (v1)
Topic: HTTP request to API
Replies: 4
Views: 3040

Re: HTTP request to API

Capn Odin wrote:I kinda like the library Requests, so I would suggest you keep using Py[/url].

When running the script all I get is a blank msgbox. I have installed Python 3.5.2 which I figured would be needed
by skribb
13 Oct 2016, 06:24
Forum: Ask for Help (v1)
Topic: HTTP request to API
Replies: 4
Views: 3040

HTTP request to API

i want to try and make HTTP requests to the LIFX api. Currently I use a python script in Eventghost. import requests token = "xxxxxxxxxxxxxxxxxxxxxxxxxx" headers = { "Authorization": "Bearer %s" % token, } payload = { "power": "on", "duration": 0.1, "color": "white brightness:1.0 kelvin:4500" } resp...

Go to advanced search