|
Asking about todo list (shadow4 skin) 1 Year, 9 Months ago
|
|
Ok, this is about todo list. I want to change font format.
The type of font i already can do it which is arial to century gothic.
BUT, the when i want to change from normal to "bold" cannot.
I already edit from element and todo xml. Is there another file did i need to change?
Some picture would help.
The font type change. "bold" not shown.
Please help me.....
tQ.
(sorry for my bad english)
|
|
|
|
|
|
|
Re: Asking about todo list (shadow4 skin) 1 Year, 9 Months ago
|
|
|
Welcome to the forum, ameinn.
The item's values are case sensitive.
You write weight="bold" or weight="BOLD"? (write it in upper case: BOLD).
|
|
|
|
|
|
|
Re:Asking about todo list (shadow4 skin) 1 Year, 9 Months ago
|
|
from element xml
| Code: |
<font id="font.bold" facename="Arial" weight="BOLD" size="8" />
|
from todolist xml
| Code: |
<todolist id="Todo List.todolist" origin1="TOP-LEFT" x1="0" y1="0" origin2="BOTTOM-RIGHT" x2="0" y2="0">
<header>
<appearance padding="0,0,0,0" element="font.bold" color="255,255,255,255" effect="NORMAL" align="TOP-LEFT" />
</header>
<item>
<appearance padding="10,0,0,3" element="font.bold" color="255,255,255,255" effect="NORMAL" align="TOP-LEFT" />
<button element="bitmap.todo.item" origin="TOP-LEFT" x="0" y="0" action="Global_ToggleTaskStatus('#GUID#')" tooltip="Mark as completed" />
</item>
<overdueitem>
<appearance priority="200" padding="10,0,0,3" element="font.bold" color="255,0,0,255" effect="SHADOW" align="TOP-LEFT" />
<button element="bitmap.todo.item" origin="TOP-LEFT" x="0" y="0" action="Global_ToggleTaskStatus('#GUID#')" tooltip="Mark as completed" />
</overdueitem>
<completeditem>
<appearance priority="200" padding="10,0,0,3" element="font.normal" color="180,180,180,255" effect="NORMAL" align="TOP-LEFT" />
<button element="bitmap.todo.item" origin="TOP-LEFT" x="0" y="0" action="Global_ToggleTaskStatus('#GUID#')" tooltip="Mark as needs action" />
</completeditem>
<cancelleditem>
<appearance priority="200" padding="10,0,0,3" element="font.normal" color="180,180,180,255" effect="NORMAL" align="TOP-LEFT" />
<button element="bitmap.todo.item" origin="TOP-LEFT" x="0" y="0" action="Global_ToggleTaskStatus('#GUID#')" tooltip="Mark as completed" />
</cancelleditem>
<progressbar element="bitmap.progressbar.large" origin1="TOP-LEFT" x1="10" y1="0" origin2="BOTTOM-RIGHT" x2="0" y2="0" scaling="TILE" margins="2,0,2,0" />
<separator padding="0,10,0,0" />
</todolist>
|
whats wrong??? 
|
|
|
|
|
|
|
Re:Asking about todo list (shadow4 skin) 1 Year, 9 Months ago
|
|
|
Looks like you're right. Changing some values makes no changes.
I think that the values you're seeing in todolist.xml are default values.
Each category has its own values. (e.g. Magenta has magenta color for text)
And some categories have they own font value.
|
|
|
|
|
|
|
Re:Asking about todo list (shadow4 skin) 1 Year, 9 Months ago
|
|
Then cant be change? 
|
|
|
|
|
|
|
Re:Asking about todo list (shadow4 skin) 1 Year, 5 Months ago
|
|
|
I haven't tested this, but it's likely that you need to change not the events.xml, but elements.xml. There, you'll see lots of tags like <font> (not <bitmapfont>). Those are the ones you need to edit in order to change the appearance of the items. If they don't already have weight="BOLD" then add that. If you only use color categories in your To Do list, you'll need to do that for all font elements like red, blue, magenta...
|
|
Jotaf
Fresh Boarder
Posts: 18
|
|
Last Edit: 2011/12/05 13:09 By Jotaf.
|
|
|