Here ya go...enjoy! Lol, i must say my code for the track info panel is pretty much a mess. It works fine though, no worries there.
Code:
//MODE
ffffff$get(playing_mode)Mode: %_trackinfo_mode% $if(%_trackinfo_notrack%,No track, $repeat($char(32),5)$if(%_isplaying%,$select($add(1,$mod(%_time_remaining_seconds%,4)), ,...,..,.,))$char(10)
// progressbar config
$puts(theme,1)
$if($strcmp($get(theme),1),
$puts(progress_color1,ff6d66)
$puts(progress_color2,ffe1df)
)
$puts(progress_color1a,$blend($get(progress_color1),000000,1,4.5))
$puts(progress_color2a,$blend($get(progress_color2),000000,1,5.7))
// progressbar
$puts(progressbar,
$if(%_length_seconds%,
$puts(progress_color1a,$blend($get(progress_color1),ffffff,1,4.5))
$puts(progress_color2a,$blend($get(progress_color2),000000,1,5.7))
$puts(progress,$muldiv(%_time_elapsed_seconds%,$get(progress_length),%_length_seconds%))
$transition($repeat($get(progress_char),$get(progress)),$get(progress_color1a),$get(progress_color1))
$transition($repeat($get(progress_char),$sub($get(progress_length),$get(progress))),$get(progress_color2a),$get(progress_color2))
$pad_right($muldiv(%_time_elapsed_seconds%,100,%_length_seconds%),3)'%'
,streaming...
))
$get(progressbar))
$puts(text1,ffffff)
$puts(text2,0000ec)
// transition color for fading out
$puts(trans_back,0000ec)
// transition color for foreground
$puts(trans_frnt,FFFFFF)
//Shows Mode and simple "..." ticker
Mode:$char(1)%_trackinfo_mode% $if(%_trackinfo_notrack%,No track, $repeat($char(32),5)$if(%_isplaying%,$select($add(1,$mod(%_time_remaining_seconds%,4)), ,...,..,.,))$char(10)
//Line Break
$char(10)
//displays 'Song Info' title bar
$char(1)C$transition(<▬▬▬▬▬▬▬▬▬▬▬,$get(trans_back),$get(trans_frnt)) $get(white)FFFFFF Song Info $transition(▬▬▬▬▬▬▬▬▬▬▬>,$get(trans_frnt),$get(trans_back))$char(10)
//Song info
$char(10)
4C4C4C - Artist:0000ec $if3(%artist%,... '('unknown artist for this track')')$char(10)
4C4C4C - Title:0000ec $if3(%title%,...)$char(10)
4C4C4C - Track length:0000ec $if(%_isplaying%,[%_time_elapsed%]$if(%_time_total%,'/'%_time_total%),%_length%) $if(%_time_total_seconds%,808080'('Percent: $pad_right($muldiv(%_time_elapsed_seconds%,100,%_time_total_seconds%),1)'%)')$char(10)
4C4C4C - Tracknumber: 0000ec$num(%tracknumber%,)[ of $get(ntracks)]$char(10)
4C4C4C - Album:0000ec $if3(%album%,...'('unknown album for this track')')) 808080$if2('(Disc:' %disc%')',)$char(10)
4C4C4C - Release date:0000ec $if3(%date%,...)$char(10)
4C4C4C - Genre:0000ec $if2(%genre%,'...')$char(10)
//Line Break
$char(10)
// displays 'Technical Info' title bar
$char(1)C$transition(<▬▬▬▬▬▬▬▬▬▬▬,$get(trans_back),$get(trans_frnt)) $get(white)ffffffTechnical Info $transition(▬▬▬▬▬▬▬▬▬▬▬>,$get(trans_frnt),$get(trans_back))$char(10)
//Line Break
$char(10)
//Tech Info
4C4C4C - File size:0000ec $div(%_filesize%,1048576).$left($num($muldiv($mod(%_filesize%,1048576),1000,1048576),3),2)' MB'$char(10)
4C4C4C - Codec:0000ec %__codec%$char(10)
4C4C4C - Compression: 0000ec$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1 '['$muldiv(%__bitrate%,100,1411)'%]'$char(10)
4C4C4C - Bitrate: $get(text2)%__bitrate%Kbps$char(10)
$if(%__mpc_profile%,Profile: $get(text2)%__mpc_profile%$char(10),)
$if(%__lame_version%,LAME: $get(text2)%__lame_version% %__lame_profile%$char(10),)
$if(%__compression%,Mode: $get(text2)%__compression%$char(10),)
4C4C4C - Samplerate: $get(text2)$if(%__bitspersample%,%__bitspersample%bit ,)%__samplerate%Hz$char(10)
4C4C4C - Channels: 0000ec $if($stricmp($codec(),MP3),%__mp3_stereo_mode%,$ifgreater(%__channels%,1,Stereo,Mono))$char(10)
4C4C4C - Track Gain:0000ec $if3(%__replaygain_track_gain%, RG not applied)$char(10)
4C4C4C - Album Gain:0000ec $if3(%__replaygain_album_gain%, RG not applied)$char(10)
808080 - Comments: 0000ec$if3(%comment%, No comments available)$char(10)
// progressbar config
$puts(progress_char,¦)
$puts(progress_length,80)
$if($strcmp($get(theme),1),¦¦
$puts(progress_color1,$rgb(164,235,12))
$puts(progress_color2,$rgb(54,106,179))
)
// PREPARE COLOR-STRINGS
// =========================================
$puts(progress_color1a,$blend($get(progress_color1),00ff00,1,4.5))
$puts(progress_color2a,$blend($get(progress_color2),ff0000,1,5.7))
// progressbar
$puts(progressbar,
$if(%_length_seconds%,
$puts(progress,$muldiv(%_time_elapsed_seconds%,$get(progress_length),%_length_seconds%))
$transition($repeat($get(progress_char),$get(progress)),$get(progress_color1a),$get(progress_color1))
$transition($repeat($get(progress_char),$sub($get(progress_length),$get(progress))),$get(progress_color2a),$get(progress_color2))
$pad_right($muldiv(%_time_elapsed_seconds%,100,%_length_seconds%),3)'%'
,streaming...
)
)
$char(10)
$get(progressbar)
^^IM in desperate need of someone to help me streamline and organize this code. PM me if you have any suggestions.
and for the color when u click a track, go to preferences > columns UI > Globals > Colour > click on tools (towards bottom) > then "global help" ....................................The first line is the info u need. For example i just entered
at the very top of my globals colour tab. Hope that helps. Feel free to ask anything else of me.
I got a bunch of stuff in there: tons o' buttons, lame encoder (3.97b1), ogg encoder (forgot version, newest one though), cool icons for media files, and a couple themes. The "DEFAULT" theme is just a backup of my normal setup, so continue to use that as a backup if you want.
ALSO, please delete my username and password under preferences > audioscrobbler...thank you