Recommended Posts

I have another problem, every time you play music from a DVD. I get this window.

dibujoir0.jpg

This is probably caused by the Play Count Mod attempting to add it's tags to the audio file. Play Count Mod settings are found under Tools in foobar preferences.

If you don't use the play count info, you can set the "Skip tracks NOT in DB by filetype:" to *

That should make Play Count ignore all files that aren't in you Media Library (I'm assuming that's the DB they're talking about; I could be wrong though)

channelspectrumshot2qq1.jpg

I can't get it to align with the reflect, no matter how I resize the foobar window, what could be the problem? It was normal on my first installation.

In the code for the album art panel (rightclick on the panel and choose settings), about half way down is the code for placing the reflected spectrum. Probably the easiest way to find it is to copy the entire page of code into notepad and search for vis.reflect

The lines you're looking fore are:

$panel(Spectrum analyser4,Channel spectrum panel,1,$sub(%_height%,122),$eval({%_width%}/2+3),35,)
$panel(Spectrum analyser14,Channel spectrum panel,2,$sub(%_height%,86),$eval({%_width%}/2+3),25,)

Notice the 1 and the 2 after "Channel spectrum panel". Those are the horizontal position.

To make them align change the 2 to 1 or the 1 to 2 so they're the same.

There are a few other spectrum analyser blocks on this page of code. You can take a look at those and make minor changes there also to see if it changes what you want.

Always good to have a backup of the code in notepad or elsewhere in case you can't figure out how to get back to where it works if you broke something.

Personally, I usually leave the spectrum off because of the extraordinary amount of CPU time it demands (added my own $ifequal($getpvar(vis.reflect),1, at the around the spectrum blocks so I could use the reflect option in settings to turn it on and off)

In the code for the album art panel (rightclick on the panel and choose settings), about half way down is the code for placing the reflected spectrum. Probably the easiest way to find it is to copy the entire page of code into notepad and search for vis.reflect

The lines you're looking fore are:

$panel(Spectrum analyser4,Channel spectrum panel,1,$sub(%_height%,122),$eval({%_width%}/2+3),35,)
$panel(Spectrum analyser14,Channel spectrum panel,2,$sub(%_height%,86),$eval({%_width%}/2+3),25,)

Notice the 1 and the 2 after "Channel spectrum panel". Those are the horizontal position.

To make them align change the 2 to 1 or the 1 to 2 so they're the same.

There are a few other spectrum analyser blocks on this page of code. You can take a look at those and make minor changes there also to see if it changes what you want.

Always good to have a backup of the code in notepad or elsewhere in case you can't figure out how to get back to where it works if you broke something.

Personally, I usually leave the spectrum off because of the extraordinary amount of CPU time it demands (added my own $ifequal($getpvar(vis.reflect),1, at the around the spectrum blocks so I could use the reflect option in settings to turn it on and off)

Thanks for your reply and very informative help :)

Though I don't even seem to have that specific piece of code in the album art code (I right-clicked on the cover art and chosed settings). I did a search in notepad for "vis.reflect" and "Spectrum" but they gave me no results. Can I put in the code manually?

Thank you once again for taking time to help me :)

//////////////////////////////////////////////////////////////////
//										//
//	  FOOAvA by Dawid Szypulski (dawxxx666)		//
//	1.04									//
//	www.dawxxx666.neostrada.pl				//
//										//
//////////////////////////////////////////////////////////////////

//////////////////////////////////////////////
// Global
//$setpvar(first.boot,0)
//Mini mode on/off
$ifgreater(%_height%,119,
	$setpvar(MiniMode,0)
,
	$setpvar(MiniMode,1)
)
// First boot
$ifequal($getpvar(first.boot),0,
$setpvar(first.boot,0)
,
$setpvar(first.boot,1)
)
// Colurs
$select($getpvar(set.colour),
$setpvar(colour,0-140-220)
,
$setpvar(colour,250-50-50)
,
$setpvar(colour,41-185-92)
)

// Hide scrollbar function
$ifgreater($getpvar(playlist_width),$eval({%_width%}/2-6+10),
	$setpvar(scrollbar,1)
,
$ifequal($getpvar(playlist_width),$eval({%_width%}/2-6),	
	$setpvar(scrollbar,1)
,
	$setpvar(scrollbar,0)
))

$ifgreater($getpvar(playlist_width),$eval({%_width%}-2+10),
	$setpvar(scrollbar3,1)
,
$ifequal($getpvar(playlist_width),$eval({%_width%}-2),
	$setpvar(scrollbar3,1)
,
	$setpvar(scrollbar3,0)
))

//-end of Global/////////////////////////////

This is what's at the top of the code. I guess it's the first code page you see when you go to Preferences > Panel UI > Edit Layout.

im noob on foobar ...... and i have a question whow we save the changes in this foobar skin ... i change the color of the bars, change background and put Cd cover to show.

But every time i close foobar and open .... the foobar loads the Defaut skin

my question is what i have to do for foobar save the changes e made in the skin so i dont have to change it every time i open foobar

cumps

  • 2 weeks later...

Hey guys,

I just got this script installed but there's one thing I can't figure out: why the library isn't working. I went into Setttings>Media Library and added my the root folder of my music library, yet when I click the 'A' on the bottom right for 'Album List', it only displays the album that I'm currently playing, like so:

19nk88.jpg

What am I doing wrong? Also, what is quick search and how do I access it?

Hey guys,

I just got this script installed but there's one thing I can't figure out: why the library isn't working. I went into Setttings>Media Library and added my the root folder of my music library, yet when I click the 'A' on the bottom right for 'Album List', it only displays the album that I'm currently playing, like so:

19nk88.jpg

What am I doing wrong? Also, what is quick search and how do I access it?

Similar problem, is coverflow working for you. I get a text error or something

Similar problem, is coverflow working for you. I get a text error or something

By coverflow you mean does it show album covers properly? I don't get any text errors, but it still doesn't work right. For example, when start the playback of an album (through the default ugly album browser, since the graphical one doesn't work), it momentarily flashes the correct album cover and goes to 'no cover art' right afterwards.

Graphical Browser displays active playlist only. This is how foo_uie_graphical_browser works. Covers for Chronflow should be called "folder.jpg", you can change it in Preferences->Display->Chronflow->Album Source->Sources

So what you're saying is that FooAva doesn't allow for a sexy album library browsing interface, only for the current/active playlist?

I have the exact same issue with Coverflow.

I've downloaded and installed the Windows Script Control that is required.

I love the skin, but the one thing I think is really lacking is the scroll bars not being coloured. They just look out of place compared to the rest of the skin!

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • What I like about Paint is using it almost exclusively for cropping and resizing images I get elsewhere--it's quick, easy and cheap... I keep it glued to my taskbar, in fact. Also, the clipping tool comes in handy, as well (hit print scrn on the keyboard and it activates immediately.)
    • I still remember it fondly today. It was so cool to work in 64-color Half Bright mode and 4.096-color HAM mode (interlaced) when x86 was still in 4-color CGA or 16-color EGA low res. C= never realized what it had until it was far too late--the failure of C= was the failure of its top management. The C= Amiga was 20 years ahead of its time, I always thought. It didn't hurt that in only 512k of chip memory, the Amiga could preemptively multitask when Apple was still doing gray scale graphics on tiny screens and along with everyone else was doing cooperative multitasking (running more than one app at a time in resident memory, but you could only run one of them at a time--had to manually switch between them.) I had a ball with AREXX scripting running between programs that had AREXX ports so that when you sent other applications data and instructions, those running applications could process the same in real time to output! Memories...
    • I'm not sure about that, but it at least "does" a version of 7.1 that this brand new card doesn't....
    • Floorp 12.15.2 by Razvan Serea Floorp is a cutting-edge web browser that combines the trusted foundation of Mozilla's Firefox with a unique Japanese perspective, offering users an exceptional online experience. This open-source browser prioritizes privacy, customization, and security. Floorp is transparent, with no user tracking or data sharing, and it's completely open source. With a strict no-tracking policy and full transparency, your personal information remains private. As an open-source project, Floorp not only shares its source code but also its build environment, inviting users to contribute and build their unique versions. The regular updates, based on Firefox ESR, ensure that you always have the latest features and security enhancements. Floorp key features: Strong Tracking Protection: Floorp offers robust tracking protection, safeguarding users from malicious tracking and fingerprinting on the web. Flexible Layout: Customize Floorp's layout to your heart's content, including moving the tab bar, hiding the title bar, and more for a personalized browsing experience. Switchable Design: Choose from five distinct designs for the Floorp interface, and even switch between OS-specific designs for a unique look Regular Updates: Based on Firefox ESR, Floorp receives updates every four weeks, ensuring up-to-date security even before Firefox's releases. No User Tracking: Floorp prioritizes user privacy by abstaining from collecting personal information, tracking users, or selling user data, with no affiliations with advertising companies. Completely Open Source: The full source code for Floorp is open to the public, allowing transparency and enabling anyone to explore and build their own version. Dual Sidebar: Floorp features a versatile built-in sidebar for webpanels and browsing tools, making it perfect for multitasking and quick access to bookmarks, history, and websites. Flexible Toolbar & Tab Bar: Customize your browser with Tree Style Tabs, vertical tabs, and bookmark bar modifications, catering to both beginners and experts in customization. User-Centric Web Experience: Floorp prioritizes user privacy and collaboratively blocks harmful trackers. Floorp 12.15.2 changelog: fix: reset tab drag state on dragend to prevent position offset (#2488) by @Ryosuke-Asano in #2497 fix(workspaces): hide split view wrapper when all tabs are hidden by @Ryosuke-Asano in #2495 fix(split-view): prevent stuck pointer-events:none after drag on web content by @Ryosuke-Asano in #2492 feat(design): add Gecko 152 CSS variable aliases and Lepton compatibility layer by @Ryosuke-Asano in #2494 fix(workspaces): exitOnLastTabClose no longer quits Floorp when closing the last tab by @Ryosuke-Asano in #2498 Download: Floorp 64-bit | 95.0 MB (Open Source) Links: Floorp Website | Github Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • I can barely recall getting web results from a file search... I must've turned it off long ago. 26H2 is Insider's Preview build 26300.8697, which I am running, atm. It is not available for people running the standard commercial builds of Windows--only for the beta test Insider's group. But anyway, as mentioned in the thread, this feature has been around for a long time...
  • Recent Achievements

    • Dedicated
      Almohandis earned a badge
      Dedicated
    • Dedicated
      JuvenileDelinquent earned a badge
      Dedicated
    • First Post
      DrWankel earned a badge
      First Post
    • Reacting Well
      DrWankel earned a badge
      Reacting Well
    • Week One Done
      Supreme Spray LV earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      507
    2. 2
      +Edouard
      185
    3. 3
      PsYcHoKiLLa
      84
    4. 4
      Michael Scrip
      78
    5. 5
      Steven P.
      76
  • Tell a friend

    Love Neowin? Tell a friend!