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: foo_uie_trackinfo (Read 815412 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

foo_uie_trackinfo

Reply #900
I second that :-)

Even though I can backup the trackinfo tagz, it's a royal PITA to restore all the color, fonts, timing, etc. settings.

foo_uie_trackinfo

Reply #901
A lot more of foobar's settings could do with being exportable, continuing the trend. Layout, component settings, yadda yadda
hi

 

foo_uie_trackinfo

Reply #902
Is it possible to use the scrolling feature only on a certain portion of the trackinfo? Let us say I have a header that shows Artist-Title and Play Time on the same line. If the artist-title combination is too long it will push the Play Time onto the next line thus effectively breaking the style. If I set the Scroll feature on it will scroll the whole line including the Play Time. What I want to try doing is just being able to scroll the Artist-Title string and have the Play Time set in stone.

I know I can just make the Artist-Title string ellipse after a certain amount of characters, but then I won't be able to see the whole name of song. Thanks for any help.

foo_uie_trackinfo

Reply #903
Hi. I cannot get my Text centered or aligned right. The commands I expect to work simply have no effect on the output. the text always remains aligned left

I'm using foobar v0.9.3b1 with columnsUI 0.1.3b1v5 and uie_trackinfo v0.8.

The simple test code I'm using is
Code: [Select]
$char(1)C$if(%_trackinfo_notrack%,No track,%artist% - %title%
$char(10)Album: %album%)

Can enybody tell me my mistake?

foo_uie_trackinfo

Reply #904
The commands to define the alignment have been changed to $tab().

Three lines:

Code: [Select]
$tab() right justify
$char(10) $tab() centered $tab()
$char(10) left justify

One line:

Code: [Select]
left justify $tab() centered $tab() right justify

(spaces are not necessary)

foo_uie_trackinfo

Reply #905
hi. first post 
I really like this plugin. I´m using a nice code I found here, and works great, except for the playback statistics. It does not show the times played, or "last played on..."
I tried with some other codes and does not work either, so I assume that it´s the playcount component that fails. Can somebody point me to the good one? I saw there are two, official and unofficial, and I tried both but couldn't get the statistics to show right

any help?

by the way, this is the code, if someone can look it up and tell me if there's something wrong with the statistics part, I'd really appreciate it also

Code: [Select]
// Original code by necropimp, modified by AstreaEdge, final by KockRoach
// Appearance changed by Habla. Muchas gracias to those above!
// Best viewed with vert pad 10, hor pad 13, line space 2, Segoe UI 7pt font, black background

// !!!!BEGIN USER CONFIGURATION!!!!

// Show Artist? (1 = show, 0 = don't show)
$puts(arts,1)

// Show Album?
$puts(albs,1)

// Show Title?
$puts(tils,1)

// Info Heading Color e.g. "Title:"
$puts(head,$rgb(61,129,193))

// Info Color e.g. "Black Dog"
$puts(info,$rgb(255,255,255))

// Info Annotation Color (e.g. kbps is the annotation)
$puts(anno,$rgb(255,255,255))

// Separator
// the separators (Song,Play,Tech info) will change to a different color if the panel mode is set to Follow cursor.
// change "followcursorcol" to change this color. It is currently set to flash orange.
$puts(followcursorcol,$rgb(200,150,50))
$puts(text2,$rgb(255,255,255))
$puts(text1,$if(%_trackinfo_nowplaying%,$rgb(61,129,193))$if(%_trackinfo_followcursor%,$get(followcursorcol)))
$puts(fadeend,$rgb(0,0,0))
$puts(seplen,55)
$puts(sepchar,'.')

// Set Rating character
$puts(ratingchar,'●●●')

// !!!!END USER CONFIGURATION!!!!

// Day Conversion
$puts(day,$substr(%last_played%,9,10))
$if(%last_played%,
$if($strcmp($left($get(day),1),0),$puts(day,$right($get(day),1))))
$if($strcmp($get(day),11),$puts(xx,th),
$if($strcmp($get(day),12),$puts(xx,th),
$if($strcmp($get(day),13),$puts(xx,th),
$if($strcmp($right($get(day),1),1),$puts(xx,st),
$if($strcmp($right($get(day),1),2),$puts(xx,nd),
$if($strcmp($right($get(day),1),3),$puts(xx,rd),
$puts(xx,th)))))))

// Month Conversion
$puts(month,$substr(%last_played%,6,7))
$puts(month_name,$select($get(month),
Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec))

// Year Conversion
$puts(year,$substr(%last_played%,1,4))

// Time Conversion
$puts(hour,$substr(%last_played%,12,13))
$puts(min,$substr(%last_played%,14,16))
$puts(sec,$substr(%last_played%,17,19))

// 24 Hour to 12 Hour Conversion
$if($strcmp($left($get(hour),1),0),$puts(hour1,$right($get(hour),1)))
$if($strcmp($left($get(hour),1),1),$puts(hour1,$sub($get(hour),12)))
$if($strcmp($left($get(hour),1),2),$puts(hour1,$sub($get(hour),12)))
$if($strcmp($get(hour),00),$puts(hour1,12))
$if($strcmp($get(hour),10),$puts(hour1,10))
$if($strcmp($get(hour),11),$puts(hour1,11))
$if($strcmp($get(hour),12),$puts(hour1,12))

// AM/PM Conversion
$if($strcmp($get(hour),00),$puts(yy,am))
$if($strcmp($get(hour),10),$puts(yy,am))
$if($strcmp($get(hour),11),$puts(yy,am))
$if($strcmp($get(hour),12),$puts(yy,pm))
$if($strcmp($get(hour),24),$puts(yy,am))
$if($strcmp($left($get(hour),1),0),$puts(yy,am))
$if($strcmp($left($get(hour),1),1),$puts(yy,pm))
$if($strcmp($left($get(hour),1),2),$puts(yy,pm))

// Date Format
$puts(time_of_year,$get(month_name) $get(day)$get(xx)',' $get(year))

// Time Format
$puts(time_of_day,$get(hour1)$get(min)$get(sec) $get(yy))

// SONG INFO SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)S o n g I n f o $get(text1)']'$char(10)

$if($strcmp(1,$get(tils)),$if(%title%,$get(head)Title: $get(info)%title%$char(10),),)
$if($strcmp(1,$get(arts)),$if(%artist%,$get(head)Artist: $get(info)%artist%$char(10),),)
$if($strcmp(1,$get(albs)),$if(%album%,$get(head)Album: $get(info)%album%$char(10),),)
$if(%date%,$get(head)Year: $get(info)%date%$char(10),)
$if(%tracknumber%,$get(head)Track #: $get(info)%tracknumber%$char(10),)
$if(%genre%,$get(head)Genre: $get(info)%genre%$char(10),)
$if(%rating%,$get(head)Rating: $repeat($get(info)$get(ratingchar),%rating%)
$repeat($rgb(70,70,70)$get(ratingchar),$sub(5,%rating%))$char(10),)

// TECH INFO SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)T e c h I n f o $get(text1)']'$char(10)

$get(head)Length: $get(info)$if(%_isplaying%,%_time_elapsed%$get(anno)$if(%_length%, / %_length%,)$if(%_length%, / -%_time_remaining%),%_length%)$char(10)
$get(head)Type:$if(%__codec%, $get(info)%__codec%) $get(info)
$if2(%__bitrate_dynamic%,%__bitrate%) $get(anno)Kb/s $if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr),VBR,CBR))
$char(10)
$if(%__lame_version%,$get(head)Preset: $get(info)$left(%__lame_version%,4) $right(%__lame_version%,4) [$upper(%__lame_profile%)]$char(10),)
$if(%__flac_vendor%,$get(head)Encoder: $get(info)$if($stricmp(%__flac_vendor%,reference libFLAC 1.1.2 20050205),FLAC 1.1.2 -8)$char(10),)
$if(%__mpc_profile%,$get(head)MPC Profile: $get(info)%__mpc_profile%$char(10),)
$get(head)Compression: $get(info)$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1 '('$get(info)$muldiv(%__bitrate%,100,1411)$get(anno)'%)'$char(10)
$get(head)Channels: $get(info)$if($stricmp($codec(),MP3),$get(space2)$caps(%__mp3_stereo_mode%),
$if(%__channels%,$ifgreater(%__channels%,1,Stereo,Mono),'?'))$char(10)
$if(%__bitspersample%,$get(head)Bitdepth: $get(info)%__bitspersample% bits/sample$char(10),)
$if(%__samplerate%,$get(head)Samplerate: $get(info)$div(%__samplerate%,1000).$substr(%__samplerate%,3,3) KHz $char(10))
$if(%_filesize%,$get(head)Filesize: $get(info)
$div(%_filesize%,1048576).$left($num($muldiv($mod(%_filesize%,1048576),100,1048576),2),2) $get(anno)'MB'$char(10),)

$if(%last_played%,
// PLAY STATS SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)P l a y I n f o $get(text1)']'
$char(10),)

$if(%play_counter%,$get(head)Played $get(info)%play_counter% times$char(10),)
$if(%last_played%,$get(head)Last played on $get(info)$get(time_of_year) at $get(time_of_day)$char(10),)
$get(head)$progress(%_time_elapsed_seconds%,%_time_total_seconds%,52,$get(head)'o',$get(head)'-')
$get(info)$muldiv(%_time_elapsed_seconds%,100,%_length_seconds%)'%'$char(10)

thanks in advance. I'm loving foobar

foo_uie_trackinfo

Reply #906
[new user bashing snipped, mods please delete, sorry]

foo_uie_trackinfo

Reply #907
cristina:

I slapped your code into a trackinfo panel and it appears to be working for me with the exception of the play counter. Try using the official component and changing all instances of %play_counter% to %play_count% in your code.  To make things easier here is the modified code:

Code: [Select]
// Original code by necropimp, modified by AstreaEdge, final by KockRoach
// Appearance changed by Habla. Muchas gracias to those above!
// Best viewed with vert pad 10, hor pad 13, line space 2, Segoe UI 7pt font, black background

// !!!!BEGIN USER CONFIGURATION!!!!

// Show Artist? (1 = show, 0 = don't show)
$puts(arts,1)

// Show Album?
$puts(albs,1)

// Show Title?
$puts(tils,1)

// Info Heading Color e.g. "Title:"
$puts(head,$rgb(61,129,193))

// Info Color e.g. "Black Dog"
$puts(info,$rgb(255,255,255))

// Info Annotation Color (e.g. kbps is the annotation)
$puts(anno,$rgb(255,255,255))

// Separator
// the separators (Song,Play,Tech info) will change to a different color if the panel mode is set to Follow cursor.
// change "followcursorcol" to change this color. It is currently set to flash orange.
$puts(followcursorcol,$rgb(200,150,50))
$puts(text2,$rgb(255,255,255))
$puts(text1,$if(%_trackinfo_nowplaying%,$rgb(61,129,193))$if(%_trackinfo_followcursor%,$get(followcursorcol)))
$puts(fadeend,$rgb(0,0,0))
$puts(seplen,55)
$puts(sepchar,'.')

// Set Rating character
$puts(ratingchar,'●●●')

// !!!!END USER CONFIGURATION!!!!

// Day Conversion
$puts(day,$substr(%last_played%,9,10))
$if(%last_played%,
$if($strcmp($left($get(day),1),0),$puts(day,$right($get(day),1))))
$if($strcmp($get(day),11),$puts(xx,th),
$if($strcmp($get(day),12),$puts(xx,th),
$if($strcmp($get(day),13),$puts(xx,th),
$if($strcmp($right($get(day),1),1),$puts(xx,st),
$if($strcmp($right($get(day),1),2),$puts(xx,nd),
$if($strcmp($right($get(day),1),3),$puts(xx,rd),
$puts(xx,th)))))))

// Month Conversion
$puts(month,$substr(%last_played%,6,7))
$puts(month_name,$select($get(month),
Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec))

// Year Conversion
$puts(year,$substr(%last_played%,1,4))

// Time Conversion
$puts(hour,$substr(%last_played%,12,13))
$puts(min,$substr(%last_played%,14,16))
$puts(sec,$substr(%last_played%,17,19))

// 24 Hour to 12 Hour Conversion
$if($strcmp($left($get(hour),1),0),$puts(hour1,$right($get(hour),1)))
$if($strcmp($left($get(hour),1),1),$puts(hour1,$sub($get(hour),12)))
$if($strcmp($left($get(hour),1),2),$puts(hour1,$sub($get(hour),12)))
$if($strcmp($get(hour),00),$puts(hour1,12))
$if($strcmp($get(hour),10),$puts(hour1,10))
$if($strcmp($get(hour),11),$puts(hour1,11))
$if($strcmp($get(hour),12),$puts(hour1,12))

// AM/PM Conversion
$if($strcmp($get(hour),00),$puts(yy,am))
$if($strcmp($get(hour),10),$puts(yy,am))
$if($strcmp($get(hour),11),$puts(yy,am))
$if($strcmp($get(hour),12),$puts(yy,pm))
$if($strcmp($get(hour),24),$puts(yy,am))
$if($strcmp($left($get(hour),1),0),$puts(yy,am))
$if($strcmp($left($get(hour),1),1),$puts(yy,pm))
$if($strcmp($left($get(hour),1),2),$puts(yy,pm))

// Date Format
$puts(time_of_year,$get(month_name) $get(day)$get(xx)',' $get(year))

// Time Format
$puts(time_of_day,$get(hour1)$get(min)$get(sec) $get(yy))

// SONG INFO SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)S o n g I n f o $get(text1)']'$char(10)

$if($strcmp(1,$get(tils)),$if(%title%,$get(head)Title: $get(info)%title%$char(10),),)
$if($strcmp(1,$get(arts)),$if(%artist%,$get(head)Artist: $get(info)%artist%$char(10),),)
$if($strcmp(1,$get(albs)),$if(%album%,$get(head)Album: $get(info)%album%$char(10),),)
$if(%date%,$get(head)Year: $get(info)%date%$char(10),)
$if(%tracknumber%,$get(head)Track #: $get(info)%tracknumber%$char(10),)
$if(%genre%,$get(head)Genre: $get(info)%genre%$char(10),)
$if(%rating%,$get(head)Rating: $repeat($get(info)$get(ratingchar),%rating%)
$repeat($rgb(70,70,70)$get(ratingchar),$sub(5,%rating%))$char(10),)

// TECH INFO SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)T e c h I n f o $get(text1)']'$char(10)

$get(head)Length: $get(info)$if(%_isplaying%,%_time_elapsed%$get(anno)$if(%_length%, / %_length%,)$if(%_length%, / -%_time_remaining%),%_length%)$char(10)
$get(head)Type:$if(%__codec%, $get(info)%__codec%) $get(info)
$if2(%__bitrate_dynamic%,%__bitrate%) $get(anno)Kb/s $if($stricmp(%__codec%,mp3),$if($stricmp(%__extrainfo%,vbr),VBR,CBR))
$char(10)
$if(%__lame_version%,$get(head)Preset: $get(info)$left(%__lame_version%,4) $right(%__lame_version%,4) [$upper(%__lame_profile%)]$char(10),)
$if(%__flac_vendor%,$get(head)Encoder: $get(info)$if($stricmp(%__flac_vendor%,reference libFLAC 1.1.2 20050205),FLAC 1.1.2 -8)$char(10),)
$if(%__mpc_profile%,$get(head)MPC Profile: $get(info)%__mpc_profile%$char(10),)
$get(head)Compression: $get(info)$div(1411,%__bitrate%).$substr($muldiv(1411,100,%__bitrate%),2,3):1 '('$get(info)$muldiv(%__bitrate%,100,1411)$get(anno)'%)'$char(10)
$get(head)Channels: $get(info)$if($stricmp($codec(),MP3),$get(space2)$caps(%__mp3_stereo_mode%),
$if(%__channels%,$ifgreater(%__channels%,1,Stereo,Mono),'?'))$char(10)
$if(%__bitspersample%,$get(head)Bitdepth: $get(info)%__bitspersample% bits/sample$char(10),)
$if(%__samplerate%,$get(head)Samplerate: $get(info)$div(%__samplerate%,1000).$substr(%__samplerate%,3,3) KHz $char(10))
$if(%_filesize%,$get(head)Filesize: $get(info)
$div(%_filesize%,1048576).$left($num($muldiv($mod(%_filesize%,1048576),100,1048576),2),2) $get(anno)'MB'$char(10),)

$if(%last_played%,
// PLAY STATS SEPARATOR
$transition($repeat($get(sepchar),$get(seplen)),$get(fadeend),$get(text1))$get(text1)'[' $get(text2)P l a y I n f o $get(text1)']'
$char(10),)

$if(%play_count%,$get(head)Played $get(info)%play_count% times$char(10),)
$if(%last_played%,$get(head)Last played on $get(info)$get(time_of_year) at $get(time_of_day)$char(10),)
$get(head)$progress(%_time_elapsed_seconds%,%_time_total_seconds%,52,$get(head)'o',$get(head)'-')
$get(info)$muldiv(%_time_elapsed_seconds%,100,%_length_seconds%)'%'$char(10)

foo_uie_trackinfo

Reply #908
Is it still possible to add Track Info to the toolbar? In a previous post you said this could be accessed through "Preferences->Display->Columns UI->Other->List all toolbars," but in 0.9.2 I no longer have an "Other" tab. Am I just missing something obvious?

    - M.

foo_uie_trackinfo

Reply #909
I do not know of any way to embed a trackinfo panel into the foobar toolbar. You can, however, make your root splitter a vertical splitter then add a horizontal splitter as the first item. You can then add any toolbars or other panels such as trackinfo to that horizontal splitter. If you then disable the foobar toolbar the horizontal splitter you just created will appear to take it's place.  You can also place one at the bottom to replace the statusbar.

Edit: Type-O's

foo_uie_trackinfo

Reply #910
These Track info source code occupy a lot of CPU Load.

Code: [Select]
$puts(LineWidth, 18)

$puts(Line_Col,$RGB(0,0,150))
$puts(Line_BGCol,$rgb(255,255,255))
$puts(Line_bgCol,$RGB(60,72,82))
$puts(Line_Col,$rgb(255,125,0))


// Seperator Line
$puts(Line_Col1,$blend($get(Line_Col),$get(Line_BGCol),20,100))
$puts(Line_Col2,$blend($get(Line_Col),$get(Line_BGCol),80,100))
$puts(PrintLIne,$transition($repeat($char(6),$get(LineWidth)),$get(Line_Col2),$get(Line_Col1))$transition($repeat($char(6),$get(LineWidth)),$get(Line_Col1),$get(Line_Col2))$char(10))



$get(PrintLine)
$get(PrintLine)
$get(PrintLine)
$get(PrintLine)
$get(PrintLine)
$get(PrintLine)
$get(PrintLine)
$get(PrintLine)
$get(PrintLine)

I don't understand why this code has problem.
If call $get(PrintLine) once then its CPU Load is small as normal.

[!--sizeo:1--][span style=\"font-size:8pt;line-height:100%\"][!--/sizeo--]Moderation: Changed [ code ] to [ codebox ] to preserve forum layout.[/size]

foo_uie_trackinfo

Reply #911
cristina:

I slapped your code into a trackinfo panel and it appears to be working for me with the exception of the play counter. Try using the official component and changing all instances of %play_counter% to %play_count% in your code.  To make things easier here is the modified code:


it's working perfectly now. thanks so much youtsuya! very kind sir 
hopefully I will get enough skills soon to be able to fix these kind of things by myself...

foo_uie_trackinfo

Reply #912
To mods: How about splitting this thread and moving all foo_uie_trackinfo_mod discussion to a new thread?



foo_uie_trackinfo

Reply #915
Well, I will probably get bashed for posting this here, but I was wondering..

a lot of people post their codes and stuff, but where am I supposed to paste that? o.O

I've been searchin' through Foobar and have found nothing that can help me;(.

Any help here would be awesome, thanks.


Edit: after more than 1 hour of trying, and like 15mins after I posted this I found out.

Sorry >.<

foo_uie_trackinfo

Reply #916
Well, I will probably get bashed for posting this here, but I was wondering..

a lot of people post their codes and stuff, but where am I supposed to paste that? o.O

I've been searchin' through Foobar and have found nothing that can help me;(.

Any help here would be awesome, thanks.


Edit: after more than 1 hour of trying, and like 15mins after I posted this I found out.

Sorry >.<


You need to add an instance of the track info panel via the layout configuration menu of foobar.  After doing so, right click the resulting track info panel and select settings.  At the bottom of the screen for configuration of the track info panel you paste your desired track info code.  I hope this helps.

foo_uie_trackinfo

Reply #917
How can i put in the info track panel, the url from the URL tag field, and maybe so i can click on it and open it in the web browser? All my mp3s have the URL tag field written with a web address...

foo_uie_trackinfo

Reply #918
How can i put in the info track panel, the url from the URL tag field, and maybe so i can click on it and open it in the web browser? All my mp3s have the URL tag field written with a web address...

Although you may put it in there I don't think trackinfo panel supports such actions (as opening hyperlinks). As an alternate solution: try foo_run

foo_uie_trackinfo

Reply #919
I was just thinking today as I started to build a new foobar layout, "I don't like having my album art and track info in different panels."

Is there a way we could build a plugin with rudimentary html support? Or some way to integrate image support into the trackinfo plugin?


foo_uie_trackinfo

Reply #921
Please search the forum before posting.


Thanks for the info.

In my experience, the search function is relatively useless, as any search seems to pull up the entire forum as results.

foo_uie_trackinfo

Reply #922
hey,
today i updated foobar from 0.9.3 to 0.9.3.1 and also updated some components, e.g. foo_columns_ui (from 0.1.3 pre-alpha 17v6 to 0.1.3 beta 1v5 so i had to configure the layout all over again..) and foo_uie_trackinfo (from version 0.5 to 0.8). and with this trackinfo something seems to be wrong, cuz my taskman is saying foobar needs from approximately 5% (that should be normal) to more than 70% of cpu usage! its rising and falling from one to the other second all the time.
i know that trackinfo is causing this high usage, because i made tests with every single plugin..
when trackinfo is loaded it doesn't matter what the formatting string is saying, even if its empty or the trackinfo panel is hidden, i experience this high cpu usage.
the only solution for me is to remove the panel (or to remove the foo_uie_trackinfo.dll that would give the same effect )

has anyone experienced the same or similiar high(er) cpu usage with the latest foobar configuration?
or does anyone have a clue what could make foobar eat so much cpu ressources?

thanks for any help!

foo_uie_trackinfo

Reply #923
I noticed you are running foo_uie_trackinfo.dll. Which one are you using? The main version of that component has a known bug with scrolling text that causes CPU spikes. Try removing the component to see if it resolves your issue. If so, you should either update to one of the newer variants or search the forum for what settings to use to minimize the affects of the bug. If I remember correctly the desired settings were something like 50000,1,2000 on the right side of the config box. I personally switched to foo_uie_trackinfo_mod.dll

I also noticed you are using the albumart and prettypop components.. does the cpu spike occur only when you change tracks? If so you might want to narrow the scope of your sources lists.

There are many things that can cause cpu spiking. Try removing your components one by one and see if you can figure out which one is causing the problem.


Hey. Many people have had problems with foo_ui_trackinfo. the foobar wiki provides the solution

Quote
Track Info Panel (foo_ui_trackinfo)

    * set Scroll Steps to 1
    * set Scroll end delay (ms) to 50000 (this is the max)



To further press down on CPU time, make sure steps to 1 and scroll end delay to 50000.

If your trackinfo does not need to be updated regularly (i.e. no progress bar), you can also turn off the "Update every second" checkbox.


Last I heard, the recommendation for trackinfo was to use the following settings (taken from the wiki's Increasing Performance page):

Quote

set Scroll Steps to 1
set Scroll end delay (ms) to 50000 (this is the max)



I noticed this when I was first using this plugin... I'm not sure exactly what it means, but I was told to change the settings I've circled on the attatched image... I haven't had a problem since... try it and see if it helps your situation...

settings to change are:
Scroll speed (ms): 50000
Scroll steps: 1

here is a screen capture of mine:
trackinfo settings image


Most likely trackinfo is the culprit.  Do the following to every trackinfo instances you have.

Scroll steps -> 1
Scroll speed/scroll delay -> 50000 ms


etc...

foo_uie_trackinfo

Reply #924
hey...
sorry for my ultra newbie question, but..
how to paste these trackinfo codes to my foobar ?
it doesn't work !