iPod news, layout Q
Sep. 8th, 2005 10:37 amHow glad am I that I went with the 20G iPod instead of the now defunct mini? iPod replaces the mini with the nano. I know I complained at the time that I saw no reason whatsoever to buy the mini for $50 less than the 20G when the size difference was fractional. I guess iPod was already working on that. Now they have a true "mini" version. Still, I think I'd have been diappointed in only 4G vs. the 20G I have, so I doubt even the smaller Nano would have won me.
On another subject, someone once mentioned something about moving the tags line in flexible squares down to the same line as comments. Anyone know how to do that off the top of their head? I'm getting kind of annoyed with the current tag location, but I still love my flexy square layout.
On another subject, someone once mentioned something about moving the tags line in flexible squares down to the same line as comments. Anyone know how to do that off the top of their head? I'm getting kind of annoyed with the current tag location, but I still love my flexy square layout.
no subject
Date: 2005-09-08 05:48 pm (UTC)no subject
Date: 2005-09-08 05:52 pm (UTC)no subject
Date: 2005-09-08 05:55 pm (UTC)no subject
Date: 2005-09-08 06:18 pm (UTC)no subject
Date: 2005-09-08 06:08 pm (UTC)Tell me if you want the code that I just added (see my lj for format.)
Oh, and the new nano pod? I want one so bad it hurts.
no subject
Date: 2005-09-08 06:22 pm (UTC)On the Nano - I know! Even though I love mine to pieces, the thought of a teensy one for excercising and whatnot is tempting. Apple knows how to market their stuff. (Of course, it helps that no other MP3 player can touch the iPod for style, design, and usability.
no subject
Date: 2005-09-08 06:33 pm (UTC)layerinfo "type" = "theme";
layerinfo "name" = "name";
CODE:
set tags_aware = true; #somehow keeps S2 from just lumping the tags at the end of your entry text
set text_tags = "Tags: "; #If you want to change your tags text, edit this! The default value is "Tags: "
function Entry::print_metadata() {
if (size $.metadata > 0 or size $.tags > 0) { #altered so the metas area will print if you have tags
var string currents = """
foreach var string k ($.metadata) {
var string text = $k;
var string val = $.metadata{$k};
if ($k == "mood") {
$text = $*text_meta_mood;
}
elseif ($k == "music") {
$text = $*text_meta_music;
}
if ($k == "mood" and defined $.mood_icon) {
var Image i = $.mood_icon;
$val = "
}
$currents = $currents + """
}
#added tag code
if ($.tags) {
$currents = $currents + """
var int tcount = 0;
foreach var Tag t ($.tags) {
$currents = """$currents$t.name""";
$tcount++;
if ($tcount != size $.tags) { $currents = """$currents, """; }
}
$currents = $currents + """
}
$currents = $currents + "
println "$currents";
}
}
no subject
Date: 2005-09-08 06:37 pm (UTC)no subject
Date: 2005-09-08 06:45 pm (UTC)Thanks!