Search found 231 matches

by Getfree
18 Apr 2022, 00:11
Forum: Ask for Help (v1)
Topic: How to create tooltips with the standard fade-in/fade-out effect?
Replies: 3
Views: 447

Re: How to create tooltips with the standard fade-in/fade-out effect?

Many thanks for the detailed help. I appreciate it.
by Getfree
17 Apr 2022, 16:07
Forum: Ask for Help (v1)
Topic: How to create tooltips with the standard fade-in/fade-out effect?
Replies: 3
Views: 447

How to create tooltips with the standard fade-in/fade-out effect?

The tooltips created with the tooltip command appear and disappear without the fade-in/fade-out effect that standard tooltips have in Windows and other programs. For example, when hovering the mouse over the Start button, a tooltip fades in. Then when the mouse moves out, the tooltip fades out. Is i...
by Getfree
03 Mar 2022, 05:46
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

There's not a single "SKIPPING SONG: ..." message in there.
Try pressing CTRL+L in the console in order to clear all existing messages.
If you don't see any "SKIPPING SONG: ..." messages, then whatever is causing Spotify to skip forward is not the script. It has to be something else.
by Getfree
03 Mar 2022, 05:08
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

I could not reproduce that weird behavior. Here's a way to be 100% sure if the script is responsible for that. Set up everything the same, but use this script instead: var fileContent = await ACtl.getFile("C:/Users/parth/OneDrive/Desktop/ahk/spotify/book.txt") var songList = fileContent.toLowerCase(...
by Getfree
03 Mar 2022, 03:08
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

I saw you opened task manager, but you stayed in the "Processes" tab which is kind of useless if want to see the actual processes running. You must look into the "Details" tab to see the actual processes. Sort that list by name and see if you can find a AutoHotkey.exe process or AutoCtrl_2021.12.5.0...
by Getfree
03 Mar 2022, 02:22
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

The first video shows that Spotify keeps jumping to the next song even after you uninstalled the extension. So, it's obvious that you have something else running that's causing that.
Open the task manager and make sure you don't have any AutoHotkey.exe processes running.
by Getfree
01 Mar 2022, 01:46
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

can you provide example , how list in book.txt file look like ? As I mentioned before, the script assumes that your book.txt file has one song name per line. Like this: Name of song 1 Name of song 2 name of song 3 There can be empty lines and white spaces at the beginning, end or between song names...
by Getfree
21 Feb 2022, 11:16
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

not working at all skiping all song The script assumes that your book.txt file has one song name per line. There must be no empty lines at the beginning or end. You can make it tolerant to empty lines by changing this line: var songList = fileContent.toLowerCase().split(/[\r\n]+/) To this: var song...
by Getfree
17 Feb 2022, 13:20
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

not working at all skiping all song The script assumes that your book.txt file has one song name per line. There must be no empty lines at the beginning or end. You can make it tolerant to empty lines by changing this line: var songList = fileContent.toLowerCase().split(/[\r\n]+/) To this: var song...
by Getfree
17 Feb 2022, 13:05
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

Well, meanwhile I've had a try with @jeeswg's :arrow: JEE_Chrome...() , and IMHO it's possible to monitor Chrome's Tabs and retrieve the title of the song that is currently playing- regardless that the browser's window isn't active. :thumbup: :silent: Would it be possible somehow to send a keystrok...
by Getfree
17 Feb 2022, 10:16
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

BoBo's approach should work fine as long the the Spotify tab is active. When the title changes, send the proper keystroke to go to the next song. Though this requires that the window is focused. autocontrol extention is not working as i said because you selected url to exactly matched , set to conta...
by Getfree
17 Feb 2022, 06:50
Forum: Ask for Help (v1)
Topic: hide song in spotify playlist
Replies: 33
Views: 5054

Re: hide song in spotify playlist

I don't think your current approach is reliable because you are based on the fact that when a new song starts playing, the Chrome extension will be able to detect this if the audible state of the page changes. But this is a big IF. The audible state of a page won't necessarily change between songs. ...
by Getfree
08 Jul 2020, 16:36
Forum: Ask for Help (v1)
Topic: Partial web automation - keyboard shortcuts
Replies: 9
Views: 3441

Re: Partial web automation - keyboard shortcuts

Thank you for your fast response. If you see the relations tab it connect to that IP: IP Detections Autonomous System Country 81.169.202.3 8/ 92 6724 DE Why if is offline extension? I've seen those bogus IP traffic reports before. Take for example this analisis of some older version of AutoHotkey.e...
by Getfree
08 Jul 2020, 00:33
Forum: Ask for Help (v1)
Topic: Partial web automation - keyboard shortcuts
Replies: 9
Views: 3441

Re: Partial web automation - keyboard shortcuts

Gerfree: Is AutoControl Shortcut Manager really sure? Install a Native-Component.exe file with two files : One of the them is :AutoCtrl_2020.6.29.0.exe https www.virustotal.com /gui/file/706c7a6f2ba412b6245d2a488b8ea7691ed31da41e3f3fe80d43e17ad1a4c260/detection Broken Link for safety You mean if it...
by Getfree
04 Nov 2019, 22:28
Forum: Ask for Help (v1)
Topic: Send keys into inactive Browser Topic is solved
Replies: 12
Views: 6310

Re: Send keys into inactive Browser Topic is solved

It's not possible to send keyboard or mouse input to an unfocused Chrome window. Some time ago I gave a short explanation of why this limitation exist on Chrome and not other programs. https://www.autohotkey.com/boards/viewtopic.php?f=76&t=67985&p=292422#p292422 The only way to simulate keypresses o...
by Getfree
02 Nov 2019, 16:07
Forum: Ask for Help (v1)
Topic: Just looking for a simple toggle feature (on/off)
Replies: 4
Views: 1220

Re: Just looking for a simple toggle feature (on/off)

I see. Then may be something like this:

Code: Select all

enabled:= false

~$LButton::
	if( enabled ){
		KeyWait LButton, T0.0
		If ErrorLevel
			While GetKeyState("LButton", "P"){
				Click
				Sleep 25
			}
	}
return

!k:: enabled := !enabled
by Getfree
01 Nov 2019, 17:46
Forum: Ask for Help (v1)
Topic: Just looking for a simple toggle feature (on/off)
Replies: 4
Views: 1220

Re: Just looking for a simple toggle feature (on/off)

Did you try something like this?

Code: Select all

~k:: Suspend
by Getfree
31 Oct 2019, 14:57
Forum: Ask for Help (v1)
Topic: Erasing a specific cookie from google chrome with AHK?
Replies: 3
Views: 1874

Re: Erasing a specific cookie from google chrome with AHK?

Just create a bookmark with this URL: javascript:void(document.cookie = ' cookie_name =; Max-Age=-99999999; path= / ') The red parts must match exactly the cookie you want to delete. This is a called a "Bookmarklet" by the way. Whenever you click that bookmark while being on the page that contains t...
by Getfree
30 Oct 2019, 23:59
Forum: Ask for Help (v1)
Topic: Autohotkey for Mac
Replies: 28
Views: 164954

Re: Autohotkey for Mac

I'm not talking about automation tools in general. I'm talking about AHK only. The AutoHotkey library is not portable. Some functions in it are, but many others are not. Now, I you only seek partial compatibility between versions of AHK, then that's indeed possible but you'll only create chaos with ...
by Getfree
30 Oct 2019, 22:58
Forum: Ask for Help (v1)
Topic: Autohotkey for Mac
Replies: 28
Views: 164954

Re: Autohotkey for Mac

Forget about the language. AHK is a library of functions and objects. For example: - the DllCall function - COM objects - windows class names - pointer sizes on different platforms - ansi vs unicode strings - the Send function with its different modes and quirks - the keyboard and mouse hooks - clip...

Go to advanced search