PDA

View Full Version : Split track numbers are now displayed as A1, A2, B



Joebugs
08-09-2007, 09:04 AM
Andrei,

I updated OrangeCD to version 6.1.7. Thanks for arranging the artists photo in VIEW ARTISTS PAGE.

I noted that tracks may be split up in this version.

Some albums have hidden tracks on the same track eg Santana' Supernatural last track consists of two songs on one track "The Calling/Day Of Celebration <Hidden Track>" and Pegi Young's last track also consists of two songs on one track "I'm Not Through Loving You Yet/Wrestle Awhile <Hidden Track>".

Is it possible to split them up in this version ie for example
13A The Calling
13B Day Of Celebration

If it is possible, please can you let me know how to do the splitting.

Regards and thanks for your assistance.

Joe

andrei_c
08-09-2007, 03:41 PM
Hi Joe,

No you can't do it even in 6.1.7. The feature you need is "track grouping", it was also suggested on this forum. I am considering it future update - but it's not implemented yet. It would be especially useful for tracking classical and prog-rock pieces, e.g.:

Yes

1. Close to the Edge

Wadson
08-15-2007, 05:04 AM
"Start vinyl side" works fine but not perfect.
For example, in track listing I see now "A1-A5, B1-B5"
But in Line-up and Credits still:
Name1 (1,7,8)
Name2 (2,9,10) etc.
It's very inconveniently, especially for 2 and more LPs.

And more, it causes script error in track page

Wadson
08-16-2007, 02:31 AM
Sorry, I was wrong concerning script error.
I forgot I use my theme with java script for moving between track pages I found here.

<!--
function printTrackLinks()
{

var url = document.URL;
var track = <dax:tracknum/>;

document.write("<table class=\"tracklink\"><tr>");

// Left
if (track > 1)
document.write("<td class=\"lefttracklink\"><a href=\"" +
url.replace(/track=(\d+)/,"track=" + (track-1)) +
"\"><<< Previous track &amp;nbsp;&amp;nbsp;</a></td>");

// Right
if (track < <dax:trackcount/>)
document.write("<td class=\"righttracklink\"><a href=\"" +
url.replace(/track=(\d+)/,"track=" + (track+1)) +
"\">&amp;nbsp;&amp;nbsp; Next track >>></a></td>");

document.write("</tr></table>");

}
-->

Any ideas how to make it works for vynil sides?