Re: Columns UI appearance
^ (No need to quote the whole reply)Could you please explain how you achieved the background visualization effect? I briefly did, but exact steps since there is some setup involved... Put Spectrum Analyzer in a Flowin window (see links above) - View > Flowin > New Flowin > left-click > Spectrum Analyzer Right-click in Spectrum Analyzer > Configure > Common > enable Show Artwork. If you want artist art and already have some downloaded, enter Artwork File Path such as -M:\Music\$meta(artist,0)\Artist.jpg And set the many other visualization options as you like. Resize the Flowin window to the same size and position as the foobar window, and enable transparency if not already - Preferences > Display > Columns UI > Main tab > Use transparency - set 240-ish. (If you are doing this in DUI the transparency option is in Preferences > Advanced > Display somewhere) Now ideally to turn it on/off you want to make a toolbar button that runs a javascript to quickly focus the foobar window on top. If you use an existing JSP3 panel (I think the exact same script would work in SMP), open the script editor with [hold SHIFT + WIN key] > right-click > Configure and add this -function on_main_menu(index) { switch (index) { case 1: fb.RunMainMenuCommand("View/Flowin/Spectrum Analyzer/Show"); window.SetTimeout(function () { fb.RunMainMenuCommand("View/Activate"); }, 100); break; } } Note: If you added additional things (like Splitters) to the Flowin window, or changed the name of the window title, be sure to change the path to the main menu command above to the correct name as it appears on the menu. Now make a toolbar button in your layout and point it to File > JScript Panel 3 > 1 (or File > Spider Monkey Panel > 1 if using that). Clicking it should toggle the background on/off and quickly put the foobar window on top. (In Windows I believe there is no way to launch a window in the background, so this is my current workaround) Edit: Also I think Flowin shows on startup by default, should turn that off - View > Flowin > Spectrum Analyzer > Show On Startup (off)