2009-01-19, 06:11 AM
The format of the settings menu looks like a list with two columns which I want to use for Burndvdx2. Is there an easy way to get text right and left justified in a list?
2009-01-19, 06:11 AM
The format of the settings menu looks like a list with two columns which I want to use for Burndvdx2. Is there an easy way to get text right and left justified in a list?
2009-01-19, 08:50 AM
You can use align="Left" and align="Right" in a <DrawText> node in the skin file.
My Projects
Programs Plugin [SIZE=2](retired) | Volume OSD Plugin (retired) | Documentation Wiki (retired)[/SIZE]
2009-01-19, 04:57 PM
McBainUK Wrote:You can use align="Left" and align="Right" in a <DrawText> node in the skin file. Sorry wasn't too clear, I want text on the left side of the box and then another value on the right, like the settings menu of sub's. I sort of remember a demo app that showed two values in a list box, but I don't really see how I would get that. I don't want to just space it out, since the number of characters changes with font, aspect etc.
2009-01-19, 05:17 PM
I'm not sure I see the complication here. Can't you just pass 2 arguments to the list box item and have one aligned left and one aligned right in the skin file.
My Projects
Programs Plugin [SIZE=2](retired) | Volume OSD Plugin (retired) | Documentation Wiki (retired)[/SIZE]
2009-01-19, 05:17 PM
It is like McBainUK says above, just two strings, one left aligned, one right aligned.
Code: <DrawText text="@name" loc="3,5" size="95,50" textStyle="GeneralTextHeaderStyle" align="Left"/> |
|