Search found 48 matches

by Lisa19
23 Nov 2022, 05:50
Forum: Tips and Tricks (v1)
Topic: Easy AutoGUI 2022 for AHK - The Final Release. Preferred GUI generator.
Replies: 6
Views: 29111

Re: Easy AutoGUI 2022 for AHK - The Final Release. Preferred GUI generator.

Thanks a lot for sharing your work! There is a bug with the help html links (I guess it's because it somehow tries to get it from the download folder instead of its own folders, but I don't know how to correct it) https://i.imgur.com/cNixpz0.png Please make a YouTube tuto about it (even a silent one...
by Lisa19
25 Aug 2022, 01:33
Forum: Ask for Help (v1)
Topic: Send {text} , Send {raw}
Replies: 4
Views: 12535

Re: SEND {TEXT} , SEND {RAW}

Thanks to jeeswg I could make this work:

I wanted to generate the hours and minutes after #S (to output "#S_01h54")

This is triggering windows inbuilt shortcut "#S":

Code: Select all

:*:sss:: 
SendInput #S_%A_Hour%h%A_Min%  
return

But this works

Code: Select all

:*:sss:: 
Send {Text} #S_%A_Hour%h%A_Min%  
return
by Lisa19
24 Aug 2022, 06:00
Forum: Ask for Help (v1)
Topic: Hotkey: Double left click + shift
Replies: 0
Views: 250

Hotkey: Double left click + shift

I want to open the selected file with notepad by (left) double clicking on + shift. I found the code to open the selected file with notepad, but not how to start it with the shift double left click. This works with other keys, but not with double clicking + shift (the first 2 lines don't work) +~LBu...
by Lisa19
30 Mar 2022, 02:56
Forum: Scripts and Functions (v1)
Topic: Toggle Microphone Mute
Replies: 34
Views: 80428

Re: Toggle Microphone Mute

⚠ In my case the chanel number change when Bluetooth is enabled or not, and/or, when the internal mic is enabled or not. To find the right chanel : ; 1) start: run AUDIOfINDER.ahk ; 2) to find the chanel number just enable then disable the mic (task bar sound icon/sound/recording), and see which num...
by Lisa19
20 Oct 2021, 02:52
Forum: Ask for Help (v1)
Topic: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved
Replies: 7
Views: 1080

Re: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved

I just would like to warmly thank you Hellbent: it's full of potential, and it completely changes my life!
by Lisa19
20 Oct 2021, 02:38
Forum: Ask for Help (v1)
Topic: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved
Replies: 7
Views: 1080

Re: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved

I solved it using the ~ (thanks to this answer https://stackoverflow.com/a/63447203/1486850)

Code: Select all

Gui, +AlwaysOnTop
Gui, Color, Fuchsia  
Gui, Show, w300 h200

~SPACE::
    send {space}
	Gui, Color, Lime  
	Gui, Flash
	setTimer, revert, -1000
	return

revert:
	Gui, Color, Fuchsia  
	return
by Lisa19
20 Oct 2021, 02:26
Forum: Ask for Help (v1)
Topic: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved
Replies: 7
Views: 1080

Re: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved

Oh I'm sorry ! It's a very interesting idea, thank you! But since I do not use the Numpad1 really often I tried to use instead space (each time I press space it will blink). SPACE:: send {space} Gui, Color, Lime Gui, Flash setTimer, revert, -1000 return But it somehow doesn't really work, the notifi...
by Lisa19
20 Oct 2021, 02:01
Forum: Ask for Help (v1)
Topic: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved
Replies: 7
Views: 1080

Re: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved

Hellbent wrote:
19 Oct 2021, 11:29
Try
Thanks for your help, I tried your code (without adding anything to it) but it doesn't do anything else than showing the UI (no blinking). Did I miss something?
by Lisa19
19 Oct 2021, 11:11
Forum: Ask for Help (v1)
Topic: Any idea to make an UI notification more visible (eg. blinking)? Topic is solved
Replies: 7
Views: 1080

Any idea to make an UI notification more visible (eg. blinking)? Topic is solved

I miss some of my notification (which use the code below). Is it possible to make them more visible, by blinking them, or to move them around (while keeping them always on the top of other windows)? Any advice is welcome! Gui, +AlwaysOnTop Gui, Color, Fuchsia Gui, Add, Text,, tea time! Gui, Add, But...
by Lisa19
02 Oct 2021, 14:48
Forum: Ask for Help (v1)
Topic: Change the position of a click sent by a keybinding based on the choice of the user in a GUI
Replies: 4
Views: 710

Re: Change the position of a click sent by a keybinding based on the choice of the user in a GUI

This worked at my end. Your script also worked in Notepad. Coordinates are relative to the active window. Test in Notepad. Thanks a lot for that, this is perfect. Concerning your last sentences, I tried my code on Notepad but it's not working. The mouse doesn't move when I press !a. But your altern...
by Lisa19
01 Oct 2021, 14:41
Forum: Ask for Help (v1)
Topic: Change the position of a click sent by a keybinding based on the choice of the user in a GUI
Replies: 4
Views: 710

Re: Change the position of a click sent by a keybinding based on the choice of the user in a GUI

mikeyww wrote:
01 Oct 2021, 14:33
Click does not accept expressions aside from individual numbers.
Thanks for that, I have updated the code with MouseClick, but the !a still doesn't work.
by Lisa19
01 Oct 2021, 14:05
Forum: Ask for Help (v1)
Topic: Change the position of a click sent by a keybinding based on the choice of the user in a GUI
Replies: 4
Views: 710

Change the position of a click sent by a keybinding based on the choice of the user in a GUI

Hi! When my script start, I am asked which websites I am currently using and based on my answer, the keybinding should send a click at a specific position. This is my script so far but the !a doesn't work (!r works but it doesn't use the settings based on the choice made on the gui): Gui,Add, ListBo...
by Lisa19
23 Jul 2021, 03:54
Forum: Ask for Help (v1)
Topic: Send several keys multiple times? Topic is solved
Replies: 2
Views: 450

Re: Send several keys multiple times? Topic is solved

It works! Thank your very much for showing the different options!
by Lisa19
23 Jul 2021, 02:58
Forum: Ask for Help (v1)
Topic: Send several keys multiple times? Topic is solved
Replies: 2
Views: 450

Send several keys multiple times? Topic is solved

Is there a shorter way to do this?

Code: Select all

send ^+, 
send ^+, 
send ^+, 
send ^+,
This intuitive way did not work:

Code: Select all

 send 4{^+,}

Thanks
by Lisa19
31 Aug 2020, 13:28
Forum: Scripts and Functions (v2)
Topic: tigerlily's Screen Dimmer [a122] - Multi-Monitor Screen Dimmer for Developers, Students, Gamers & Digital Nomads
Replies: 53
Views: 17103

Re: tigerlily's Screen Dimmer [a122] - Multi-Monitor Screen Dimmer for Developers, Students, Gamers & Digital Nomads

boiler wrote:
31 Aug 2020, 13:23
@Lisa19 - That’s not embarrassing at all to the author.
sorry, it wasn't clear: I'm the one who feels embarrassed (because of the result of windows contradict the kindness of the author, and it let me confused).
by Lisa19
31 Aug 2020, 12:20
Forum: Scripts and Functions (v1)
Topic: Brightness and Temperature Fast Control
Replies: 20
Views: 7467

Re: Brightness and Temperature Fast Control

Tigerlily wrote:
30 Aug 2020, 12:49
Check out my screen dimmer,
Thanks for your reply, but windows blocked the .exe, so I checked it, and windows found a trojan in your app:
Image
by Lisa19
30 Aug 2020, 07:35
Forum: Scripts and Functions (v1)
Topic: Brightness and Temperature Fast Control
Replies: 20
Views: 7467

Re: Brightness and Temperature Fast Control

Thanks for your reply! (Sorry for the delay I just got your message today, I used a wrong email). It is healthier to change and use the average brightness on the hardware. Unfortunatley I can't use the monitor hardware, it's useless because the darkest level is too bright. it is possible to make it ...
by Lisa19
18 Jun 2020, 03:10
Forum: Scripts and Functions (v1)
Topic: enable/disable a task in task scheduler using autohotkey
Replies: 0
Views: 1186

enable/disable a task in task scheduler using autohotkey

I found the answer https://autohotkey.com/board/topic/88658-task-scheduled-enabledisabled/ (thanks to you Pulover!). I struggle to make it work, so I post it here with a real example. the task name is: Clean the bin It's in the task scheduler folder: My_Folder ; run the script as admin (reload if no...
by Lisa19
22 Mar 2020, 14:18
Forum: Ask for Help (v1)
Topic: PDF file's current page No. ? Topic is solved
Replies: 4
Views: 2304

Re: PDF file's current page No. ? Topic is solved

@FanaticGuru thanks a lot! I'm trying to understand how this work, could you please show me how I could highlight a selected text? I tried to add this line just after your code (it did not work) page= % AVPageView.GetPageNum +1 ; first page is 0 AVDoc.PDTextSelect.highlight Thank you For those looki...

Go to advanced search