Results 1 to 6 of 6
  1. #1
    chriscasper's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Creeper No Creeping
    Posts
    945
    Reputation
    15
    Thanks
    73
    My Mood
    Sleepy

    Moving Cordinates

    I have a question.

    For the x and y coordinates, how do I set the numbers. From the top right corner or what?

    Like for example:

    Code:
    EDIT EditLoginID
    -POSITIONX 335
    -POSITIONY 295
    -WIDTH 136
    -HEIGHT 20
    --FONTNAME MSG=846
    --FONTSIZE 12
    --FONTBOLD FALSE
    --FONTITALIC FALSE
    --FONTFORMAT DT_LEFT
    --FONTFORMAT DT_VCENTER
    --OUTLINE FALSE
    --NUMBERONLY FALSE
    --OUTLINECOLOR 141148156
    --FONTCOLOR 255255255
    -END
    for positionx and positiony do I put it at the top right corner of the box?

    And how do i change the font?

  2. #2
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    For the coordinates, its the top left corner.
    For the Font, I never changed it

  3. #3
    chriscasper's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    Creeper No Creeping
    Posts
    945
    Reputation
    15
    Thanks
    73
    My Mood
    Sleepy
    Quote Originally Posted by xXModz View Post
    For the coordinates, its the top left corner.
    For the Font, I never changed it
    buhh i wana change to the font i have on the rest of my login mod and thank you

    and uhm.... is the x coordinate on the ruler on left or top? .... :/

  4. #4
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Just try everything then you will know xD

  5. #5
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    Quote Originally Posted by chriscasper View Post
    buhh i wana change to the font i have on the rest of my login mod and thank you

    and uhm.... is the x coordinate on the ruler on left or top? .... :/
    How to place the box in the top right corner:

    Distance from top = 0
    Distance between right edge and the window edge = 0 => Distance from left edge = Windows width (800) - Box width (136 in your case).

    The things you can change from the font are afaik:
    Code:
    Font name, must be one of CF's fonts afaik
    --FONTNAME MSG=846
    Font size, fun to play around with (my login screen is 50% username field and 50% password :D
    --FONTSIZE 12
    Bold font TRUE / FALSE
    --FONTBOLD FALSE
    Italic font TRUE / FALSE
    --FONTITALIC FALSE
    Horizontal alignment
    --FONTFORMAT DT_LEFT
    Vertical alignment
    --FONTFORMAT DT_VCENTER
    Login outline
    --OUTLINE FALSE
    Limit input to numbers TRUE / FALSE
    --NUMBERONLY FALSE
    Outline colour in case you chose it
    --OUTLINECOLOR 141148156
    Font colour, rgb with triple digits for each value 255255255 = rgb(255,255,255), the color of this orange is for example rgb(244,164,96) so for CF it would be 244164096
    --FONTCOLOR 255255255
    It's really fun to play around with huge fonts, give it a shot

  6. #6
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Thank you Alen

    ◄ Closed ►