Posts made by Santiago
-
Triggercmd dont work after update.
Hi, i have a little problem...
I used to use TriggerCMD with an older version, I think from 2022, but now it updated and won't let me open the program.
I don't get any errors or anything like that, it just opens and instantly closes.
Is there any way to download the old version?
-
RE: Play spotify song with cmd in a particular minute. (Code and Help to Fix)
@Russ Thanks for your reply!! Yes, its really a bummer. I dont know why they change that. Im going to test your .bat, thanks you again.
-
Play spotify song with cmd in a particular minute. (Code and Help to Fix)
Hi everybody.
Searching the internet, I have achieved that through cmd I can run spotify and then play a specific song in a specific minute.The VB Script code is:
Set WshShell = WScript.CreateObject("WScript.Shell")
Comandline = "C:...\Spotify.exe"
WScript.sleep 50
CreateObject("WScript.Shell").Run("spotify:track:09mEdoA6zrmBPgTEN5qXmN#0:52")
WScript.sleep 50This (#0:52) is what specified when in the song to start playing it. But now that the spotify interface has been updated it doesn't work anymore.
Still open spotify and plays the selected song, but not in the minute that I specify.Does anyone know how I can fix it?
(PS: I hope the code helps someone to be able to play songs from spotify)