Editing UIFile Help

Tuesday, January 23, 2007 by lcassity | Discussion: LogonStudio

Has anyone ever come across a tutorial that explains what the different lines in the UIFile.txt change? I've figured out most of the changes you can do in the themes.ini file (and even some in the UIFile) but most of the UIfile is greek to me.   One I'd like to figure out is how to change the text color of the "Click your username to begin" line. That off-white really sucks when the background is very light.
ZubaZ
Reply #1 Tuesday, January 23, 2007 7:29 AM
If you open SkinStudio, load a skin, and change the middle pane to "Code" you can select a line and SKS will tell you what that line does in the lower left.  Hope that helps.
Bichur
Reply #2 Tuesday, January 23, 2007 9:04 AM


i really gotta start playing with this stuff more....
lcassity
Reply #3 Tuesday, January 23, 2007 9:19 PM
Uh...not to sound stupid (even though that's debatable), but we are talking about logons made with logonstudio, not windowblinds skins and such....right??
Because I see nowhere in logonstudio's editor to do what you're saying. And skinstudio has no way of opening a logon skin that I can see.

Thanks for helping.  
ZubaZ
Reply #4 Tuesday, January 23, 2007 9:32 PM
Doh . .I'm an idiot.  i am so sorry, I was thinking WB.
I.R. Brainiac
Reply #5 Tuesday, January 23, 2007 9:39 PM
I'm no expert(you need Boss0190  ),but I think your looking for something that looks like this...

element [id=atom(instruct)]
{
contentalign: wrapleft;
padding: rect(18rp,0,0,0);
fontsize: rcint(43) pt;
foreground: rgb(191,191,191);

foreground is the color of the text.
boss0190
Reply #6 Tuesday, January 23, 2007 9:40 PM
It depends on what uifile you're using. Usually it will be the foreground color in this section:

element [id=atom(instruct)]
{
contentalign: wrapleft;
padding: rect(18rp,0,0,0);
fontsize: rcint(43) pt;
foreground: rgb(255,255,255);
boss0190
Reply #7 Tuesday, January 23, 2007 9:41 PM
Damn...too slow....IR...knock it off...
lcassity
Reply #8 Tuesday, January 23, 2007 10:02 PM
Here is what mine looks like:
[/color]
element [id=atom(instruct)]
{
background: argb(0,0,0,0);
contentalign: wrapleft;
padding: rect(18rp,0,0,0);
foreground: rgb(255,255,255);
fontsize: 10 pt;
fontface: "Comic Sans MS";

/*fontsize: rcint(43) pt;
foreground: white;*/
[color="#FF0000"]


This is a non-splash logon, so am I correct that the line "foreground: white;*/" needs to be changed to "foreground:rgb(0,0,0)" to change the text to black? Also, what are those two forewardslashes at the beginning and end of the last two lines for? They're not on your examples.

Ideally, I'd love to learn whatever programming language that these are written in, so I'll know what I'm looking at and be able to edit both these and splash logons also. (I must be nuts, hunh?)  x
lcassity
Reply #9 Tuesday, January 23, 2007 10:49 PM
FOUND IT!!