Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: WSH Panel Mod script discussion/help (Read 1400057 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

WSH Panel Mod script discussion/help

Reply #4201
it *might* rock if we could see it. it's currently private...


WSH Panel Mod script discussion/help

Reply #4203
no album art in the group headers... i guess that slows it down??

WSH Panel Mod script discussion/help

Reply #4204
WOW!!! Smoother than a fresh jar of Skippy
BTW any release date on JSBrowser ??

WSH Panel Mod script discussion/help

Reply #4205
no album art in the group headers... i guess that slows it down??


not added yet but it shouldn't, the main thing that was blocking me to use a such scroll engine is now fixed and is faster to populate and to evaluate than ever, all the rest to do is peanut compared to this point ...


WSH Panel Mod script discussion/help

Reply #4207
nice. 

will it include the new edit menu undo/redo function i included in WSH panel mod 1.5.10? you basically call plman.UndoBackup(playlistIndex) before adding/removing/re-ordering playlists with other plman methods. i can post more details if you need it. if you do this, you can create ctrl+z (undo) and ctrl+y (redo) keyboard shortcuts.

WSH Panel Mod script discussion/help

Reply #4208
nice. 

will it include the new edit menu undo/redo function i included in WSH panel mod 1.5.10? you basically call plman.UndoBackup(playlistIndex) before adding/removing/re-ordering playlists with other plman methods. i can post more details if you need it.


why not



WSH Panel Mod script discussion/help

Reply #4211
Is it possible to add shortcut to get back to last activated playlist (like a back button)


WSH Panel Mod script discussion/help

Reply #4213
since I couldn't edit my previously post, had to reply...

Anyone knows what might be causing this?


Windows 7 x64
Foobar2000 v1.3.8

WSH Panel Mod script discussion/help

Reply #4214
@ZarkBit

as discribed in its homepage : JSPlaylist @deviantart

...
[Requirements]
* foobar2000 v1.1 or better >> www.foobar2000.org
* WSH panel Mod v1.5.6 or better >> code.google.com/p/foo-wsh-pane…
* Windows fonts : WingDings 1, 2 & 3
[/Requirements]

[Options]
* Font guifx v2 transports >> blog.guifx.com/2009/04/02/guif…
[/Options]
...

HTH

WSH Panel Mod script discussion/help

Reply #4215
thx, didn't notice that. Solved.

WSH Panel Mod script discussion/help

Reply #4216
well the old last.fm website has gone. common7/8 script users will find last.fm bio and thumbs no longer work no longer update. of course they will continue to display all previously cached data.

other stuff like similar artists, charts, playcount sync all use the API so should continue to work as they did before.

 

WSH Panel Mod script discussion/help

Reply #4217
Hi Marc,
A small question.
Is it possible that last.fm bio and thumbs script rewrite for theaudiodb.com?

best regards


WSH Panel Mod script discussion/help

Reply #4219
but.... theaudiodb sucks. 

WSH Panel Mod script discussion/help

Reply #4220
i've updated the user recommendations part of my last.fm script so it's more suitable for narrow panels. it also supports the new last.fm website format for artist bios.

https://github.com/19379/wsh_marc2003/releases

WSH Panel Mod script discussion/help

Reply #4221
i've updated the user recommendations part of my last.fm script so it's more suitable for narrow panels. it also supports the new last.fm website format for artist bios.

https://github.com/19379/wsh_marc2003/releases


Why you don't want to update Thumbs, just change one line:

Code: [Select]
for (i = 0; i < data.length; i++) {
                        if (data[i].src.indexOf("http://img2-ak.lst.fm/i/u/60x60/") == 0) urls.push(data[i].src.replace("60x60", size == "low" ? "252x252" : size == "medium" ? "500x500" : size == "high" ? "_" : "_"));
                    }

WSH Panel Mod script discussion/help

Reply #4222
Local last.fm sites don't work in the new Biography script.


mire777, I'm gonna check it. ( ͡° ͜ʖ ͡°)


WSH Panel Mod script discussion/help

Reply #4224
marc2003, just changed those lines and it works fine. Thank you.

mire777, yep, the code works, but it downloads images "as is" - without file extensions.


Or we can add ".jpg" and then all images will be .jpg files. :]
Code: [Select]
p.run_cmd(this.vbs + " " + url + " " + file + ".jpg", false);