Quote:
Originally Posted by isarl
I see options for profiles in the Kobo Utilities settings, but not in the KT(/E) settings. What am I missing? 
|
It's not explicit like in the KU where you have different profiles, but you can handle it through the collections template option:
https://www.mobileread.com/forums/sh...d.php?t=346321
A very easy way to handle it would be:
Code:
program:
globals(serial_number='Serial Device 1');
if serial_number == 'Serial Device 1' then
return list_join(
':@:', $#collection_column_1, ',', $#collection_column_2, ',', $#collection_column_3, ',' , $#etc etc, ',')
fi;
if serial_number == 'Serial Device 2' then
return list_join(
':@:', $##collection_column_n, ',' $#etc etc, ',')
fi