based
Search found 28 matches
- 11 Oct 2022, 08:02
- Forum: KeySharp
- Topic: Keysharp - the resurrection of IronAHK
- Replies: 217
- Views: 123233
- 24 Sep 2022, 14:24
- Forum: General Discussion
- Topic: AHK_X11, AutoHotkey for Linux
- Replies: 19
- Views: 69765
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...
- 24 Sep 2022, 14:23
- Forum: KeySharp
- Topic: Keysharp - the resurrection of IronAHK
- Replies: 217
- Views: 123233
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...
- 23 Aug 2021, 16:32
- Forum: Tips and Tricks (v1)
- Topic: How to disable CTRL+ALt+DEL
- Replies: 4
- Views: 8008
Re: How to disable CTRL+ALt+DEL
no problem, glad it came of use.
- 11 Jul 2021, 14:24
- Forum: Tips and Tricks (v1)
- Topic: How to disable CTRL+ALt+DEL
- Replies: 4
- Views: 8008
- 02 Mar 2019, 12:47
- Forum: Scripts and Functions (v1)
- Topic: Invisible Screen Lock
- Replies: 1
- Views: 1519
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...
- 21 Oct 2018, 13:48
- Forum: Scripts and Functions (v1)
- Topic: LineDelete() - Delete Line Of Text From A Variable / No Loop
- Replies: 9
- Views: 5788
- 08 Jul 2017, 16:56
- Forum: Ask for Help (v1)
- Topic: FileAppend loop suddenly stopped creating txt file
- Replies: 2
- Views: 934
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...
- 08 Jul 2017, 08:47
- Forum: Ask for Help (v1)
- Topic: FileAppend loop suddenly stopped creating txt file
- Replies: 2
- Views: 934
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...
- 08 Jul 2017, 08:25
- Forum: Ask for Help (v1)
- Topic: Loop not working properly; AHK or Windows-related?
- Replies: 5
- Views: 1792
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...
- 07 Jul 2017, 20:11
- Forum: Ask for Help (v1)
- Topic: Loop not working properly; AHK or Windows-related?
- Replies: 5
- Views: 1792
Re: Loop not working properly; AHK or Windows-related?
For test purposes I reset the volume manually yesboiler 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?
- 07 Jul 2017, 14:38
- Forum: Ask for Help (v1)
- Topic: Loop not working properly; AHK or Windows-related?
- Replies: 5
- Views: 1792
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...
- 07 Jul 2017, 10:09
- Forum: Tips and Tricks (v1)
- Topic: How to disable CTRL+ALt+DEL
- Replies: 4
- Views: 8008
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 ...
- 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: 1549
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
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
}
- 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: 1549
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
}
- 16 Jan 2017, 01:31
- Forum: Ask for Help (v1)
- Topic: Blocking all input for 30 minutes
- Replies: 2
- Views: 994
Re: Blocking all input for 30 minutes
Thank you
- 15 Jan 2017, 20:40
- Forum: Ask for Help (v1)
- Topic: Blocking all input for 30 minutes
- Replies: 2
- Views: 994
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....
- 14 Oct 2016, 11:17
- Forum: Scripts and Functions (v1)
- Topic: WinHttpRequest - A function similar to HttpRequest
- Replies: 13
- Views: 17561
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...
- 14 Oct 2016, 10:48
- Forum: Ask for Help (v1)
- Topic: HTTP request to API
- Replies: 4
- Views: 3141
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
- 13 Oct 2016, 06:24
- Forum: Ask for Help (v1)
- Topic: HTTP request to API
- Replies: 4
- Views: 3141
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...