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: JScript Panel script discussion/help (Read 185094 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Re: JScript Panel script discussion/help

Reply #1000
It should but work but there are 2 things to note:

-It only works with 64bit fb2k 2.0 / JScript Panel3. AFAIK, there is no 32bit version of the JXL DLL.
-The album art preferences must explicitly specify the file extension. Wildcards won't work.

Well that explains it, time to transition to foobar 2.0, Thanks for the quick reply!

Re: JScript Panel script discussion/help

Reply #1001
My original post wasn't entirely accurate making it look like JSP3 is a requirement. Default UI and 64bit Columns UI should also support it.

Re: JScript Panel script discussion/help

Reply #1002
Hi :) etip
Playlist Organizer (Playlist Manager) (JScript Panel 3 Script) 2023-03-10
https://hydrogenaud.io/index.php/topic,110516.msg1023599.html#msg1023599

Many Thanks.
https://i.imgur.com/yhPyoxs.png
https://i.imgur.com/W4a6lCe.png
SHURE SRH1840, SENNHEISER HD660S, Beyerdynamic DT 1990 PRO, HIFIMAN HE5se, Ultrasone Performance 880, AKG K712 PRO, Bowers & Wilkins P7, SONY MDR-1AM2, Bose QuietComfort 45, SONY WH-1000XM3 (made a Upgrade/Balanced Cable by myself) Shall I write more?

Re: JScript Panel script discussion/help

Reply #1003
Darker colours come from using Default UI (top) as opposed to Columns UI (bottom).
Spoiler (click to show/hide)
Thanks for the reply, I was thought you were using custom build that able to change that main dark background.
---
I have another question. In regard to Track Info + Seekbar + Buttons script. I would like to add a shuffle/default toggle button that can switch between different icon and colour states.
I'm not sure how to make the toggle function work, and I'm not a programmer, so I have them on a separate button instead.
May I ask how to make it on one button toggle?
Many thanks
Code: [Select]
//default
    this.buttons.regular = new _button(panel.w - LM - (bs * 4), y, bs, bs, {
        char: !fb.RunMainMenuCommand('Playback/Order/Default') || fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)')
            ? '\uF074'
            : chars.music,
        colour: RGB(255, 255, 255)
    }, null, function () {
        if (fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)')) {
            fb.RunMainMenuCommand('Playback/Order/Default');
        }
    }, !fb.RunMainMenuCommand('Playback/Order/Default') || fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)')
        ? 'Default'
        : 'Shuffle');

//shuffle
    this.buttons.shuffle = new _button(panel.w - LM - (bs * 5), y, bs, bs, {
        char: '\uF074',
        colour: fb.StopAfterCurrent
            ? colours.sac
            : colours.test
    }, null, function () {
        fb.RunMainMenuCommand('Playback/Order/Shuffle (tracks)');
    }, 'Shuffle');