Re: Inline Lyrics 3.2 - Updated 29/07/2014
Posted: Tue Aug 26, 2014 2:44 pm
Ok, thanks. I'll take a look when I get a chance.
The Music Manager for Serious Collectors
https://www.mediamonkey.com/forum/
Hi trixmoto,dolf-volkoff wrote:Now that veroK mentioned it, I recall that there was an issue with blank lines in the lyrics. I used to copy timestamped lyrics from MiniLyrics editor and there sometimes was an extra blank line at the end that I didn't notice. It caused some kind of an error, but I don't remember what it said. Now I always check for that and remove blank lines, so the issue doesn't occur to me anymore.trixmoto wrote:They have to be in the right format for it to work properly. Any particular errors?
But I think it would be better if the add-on didn't react on things like that with errors, as there might be instances, where the user didn't notice an extra blank line, doesn't want the lyrics for a particular song to be timestamped at all, or wants to add /*comments*/ to lyrics, that must only appear in editor.
I think it would be best if the add-on just skipped blank lines and lines without timestamps not showing any kind of notice, and just focused on timestamped lines.
Code: Select all
Function getline(txt)
If txt <> "" Then
getline = Mid(txt,11,Len(txt)-10)
Else
getline = ""
End If
End Function