@ntepa
Works Now! Thanks a lot.
Search found 7 matches
- 31 Jan 2023, 18:59
- Forum: Ask for Help (v2)
- Topic: AHK V2 script to hide/show the taskbar in Windows 11 Topic is solved
- Replies: 4
- Views: 2202
- 30 Jan 2023, 19:36
- Forum: Ask for Help (v2)
- Topic: AHK V2 script to hide/show the taskbar in Windows 11 Topic is solved
- Replies: 4
- Views: 2202
AHK V2 script to hide/show the taskbar in Windows 11 Topic is solved
Can someone provide an updated Autohotkey V2 script to hide/show the taskbar in Windows 11? My existing script with Autohotkey 1 is no longer working. I searched the internet and was able to hide*(the taskbar disappeared only, but the taskbar space became empty and did not hide to free space--which ...
- 30 Jan 2023, 10:21
- Forum: Ask for Help (v1)
- Topic: How to get the current millisecond level unix time? Topic is solved
- Replies: 12
- Views: 4190
Re: How to get the current millisecond level unix time? Topic is solved
Thanks, converted to AutoHotkey V2 version (as I need to modify)TheDewd wrote: ↑17 May 2019, 15:58Code: Select all
Time := A_NowUTC EnvSub, Time, 19700101000000, Seconds MsgBox, %Time%
Code: Select all
Time := A_NowUTC
Time := DateDiff(Time, 19700101000000, "Seconds")
MsgBox(Time)
- 16 Oct 2021, 09:19
- Forum: Ask for Help (v1)
- Topic: Copy highlighted text and search Google Topic is solved
- Replies: 2
- Views: 807
Re: Copy highlighted text and search Google Topic is solved
I suggest you copy the text and then click a short key to search with Google.
Below is mine, After copy the text clicks Alt+Space to conduct a search. Simple and handy.
Below is mine, After copy the text clicks Alt+Space to conduct a search. Simple and handy.
Code: Select all
!space:: Run https://www.google.com/search?q=%clipboard%
- 16 Oct 2021, 09:11
- Forum: Ask for Help (v1)
- Topic: How to open Windows Terminal and send text
- Replies: 6
- Views: 4303
Re: How to open Windows Terminal and send text
Although I do not use this program, my advice as a first step is to run cmd.exe, and then run a script that uses Send instead of ControlSend to send to your active CMD window. See if you can get that working first. Try just one or two commands first, instead of the entire set. This sort of incremen...
- 16 Oct 2021, 08:26
- Forum: Ask for Help (v1)
- Topic: How to open Windows Terminal and send text
- Replies: 6
- Views: 4303
Re: How to open Windows Terminal and send text
Run, %ComSpec% /k ping 8.8.8.8 Thank you, Sir. I have another issue with this. I'd like to open the terminal and then redirect to my GitHub local repo directory and then run the commands below. gh workflow run gh run watch I would be deeply appreciative if you can help. My wrong codes which have so...
- 16 Oct 2021, 08:02
- Forum: Ask for Help (v1)
- Topic: How to open Windows Terminal and send text
- Replies: 6
- Views: 4303
How to open Windows Terminal and send text
I tried the code below, this can run normally on legacy Windows cmd, but doesn't work on Windows Terminal (before run this code I already set Windows Terminal as default command prompt app, and 'RUn cmd'will open Windows Terminal). Any and all ideas would be deeply appreciated. SetTitleMatchMode 2 R...