View Single Post
Old 02-06-2023, 12:19 PM   #26
Lys
Groupie
Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.Lys ought to be getting tired of karma fortunes by now.
 
Posts: 169
Karma: 727278
Join Date: Dec 2022
Location: Not in an English speaking country
Device: (Too many) Kobo(s)
Quote:
Originally Posted by isarl View Post
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
Lys is offline   Reply With Quote