@antiduplicity - only the skins which are linked to from my website work with the latest version. There a number of older skins which have not been updated yet.
@Mizery_Made - thanks, just realised you beat me to the punch with that response!

That'd be great, yeah. I never actually payed any attention tho the "Extra Info" mask, so I didn't know I could do that in the first place. But, yeah, the <VBR> field would be a great addition, thanks!trixmoto wrote:@fizzjob - if I add a <VBR> field to the "extra info" mask which will display "VBR" or "CBR" then you would be able to replicate this as <Bitrate> is already available. Would this be suitable for you?
I would also find this to be useful. I already have the bitrate displayed and VBR/CBR would be a nice addition.trixmoto wrote:@fizzjob - if I add a <VBR> field to the "extra info" mask which will display "VBR" or "CBR" then you would be able to replicate this as <Bitrate> is already available. Would this be suitable for you?
If you want to add it, it's really simple. Just find the section in functions.vbs where the "<Bitrate>" appears (line 493 in mine), and paste this chunk of code in after that line:gpzbc wrote:I would also find this to be useful. I already have the bitrate displayed and VBR/CBR would be a nice addition.trixmoto wrote:@fizzjob - if I add a <VBR> field to the "extra info" mask which will display "VBR" or "CBR" then you would be able to replicate this as <Bitrate> is already available. Would this be suitable for you?
Thanks
Code: Select all
if cursong.VBR Then
str = Replace(str,Translate("<VBR>"),"VBR")
Else
str = Replace(str,Translate("<VBR>"),"CBR")
End If
Yep. MonkeyRok skin was set to - Automatic -. Now I've setted to default.tabs and it works again ^__^Eyal wrote:Have you tried with other skins? Maybe the current skin you use has been deleted/uninstalled? Check in folderRaffhell wrote:monkeyrok 5.1 doesn't work anymore to me
it shows the internet explorer error "impossible to display the page" but mediamonkey.exe it's allowed in firewall rules (comodo).to see if skin's folder is empty.Code: Select all
C:\Program Files\MediaMonkey\Scripts\MonkeyRok\skins
Thanks for the tip!fizzjob wrote:gpzbc wrote:If you want to add it, it's really simple. Just find the section in functions.vbs where the "<Bitrate>" appears (line 493 in mine), and paste this chunk of code in after that line:
Then you can add a <VBR> mask in the MonkeyRok options.Code: Select all
if cursong.VBR Then str = Replace(str,Translate("<VBR>"),"VBR") Else str = Replace(str,Translate("<VBR>"),"CBR") End If