It is currently May 1st, 2024, 8:39 pm

Custom font Problem [SOLVED]

Get help with installing and using Rainmeter.
Play2Die
Posts: 4
Joined: January 10th, 2013, 2:26 pm

Custom font Problem [SOLVED]

Post by Play2Die »

The problem is that im trying to create a simple clock with a custom font but i wont load the font i have installed/put in the @Resources folder. It just keeps using Arial

This is the Custom font: http://www.dafont.com/farcry.font

I have tried using rainfont and it Told me that the name was: FarCry and that no StringStyle was needed. And yes i have tried it.

This is the code

[Rainmeter]
Created by Play2Die

;=========MEASURES

[MeasureTime]
Measure=Time
Format= %X

;=========METERS

[MeterTime]
MeasureName=MeasureTime
Meter=STRING
X=0
Y=0
FontColor=ffffff
FontSize=60
FontFace=FarCry
StringAlign=LEFT
AntiAlias=1

Please help. Thank you.
Last edited by Play2Die on January 10th, 2013, 3:30 pm, edited 1 time in total.
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Custom font Problem (Have tried Rainfont and read the gu

Post by jsmorley »

Works fine for me. I just put the .ttf file in a folder named @Resources\Fonts under the root level of the skin:

C:\Users\Jeffrey\Documents\Rainmeter\Skins\TestSkin\@Resources\Fonts

Then loaded this skin:

C:\Users\Jeffrey\Documents\Rainmeter\Skins\TestSkin\Test.ini

Code: Select all

[Rainmeter]
Update=1000

[MeterOne]
Meter=String
FontFace=FarCry
FontSize=25
FontColor=255,255,255,255
AntiAlias=1
Text=ABCDEFG#CRLF#abcdefg
And it worked ok for me...
1-10-2013 9-45-40 AM.jpg
You do not have the required permissions to view the files attached to this post.
Play2Die
Posts: 4
Joined: January 10th, 2013, 2:26 pm

Re: Custom font Problem (Have tried Rainfont and read the gu

Post by Play2Die »

Strange i tried the exact same code and the font in the @resurces folder and it did not work Must be something with my computer then. :(
You do not have the required permissions to view the files attached to this post.
User avatar
jsmorley
Developer
Posts: 22631
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Custom font Problem (Have tried Rainfont and read the gu

Post by jsmorley »

Play2Die wrote:Strange i tried the exact same code and the font in the @resurces folder and it did not work Must be something with my computer then. :(
You sure the font .ttf is in @Resources\Fonts ?
User avatar
lysy1993lbn
Posts: 291
Joined: July 25th, 2011, 9:53 am
Location: Lublin, Poland

Re: Custom font Problem (Have tried Rainfont and read the gu

Post by lysy1993lbn »

Tried myself and font didn't work, but added StringStyle=Bold to meter with that font and it working fine now..

Code: Select all

[MeterOne]
Meter=String
FontFace=FarCry
StringStyle=Bold
FontSize=25
FontColor=255,255,255,255
AntiAlias=1
Text=ABCDEFG#CRLF#abcdefg
Download rmskin
Last edited by lysy1993lbn on January 24th, 2013, 7:34 am, edited 1 time in total.
"Never argue with an idiot, he will drag you down to his level and beat you with experience."
my deviantART | Alternative Rainmeter tray icons
Play2Die
Posts: 4
Joined: January 10th, 2013, 2:26 pm

Re: Custom font Problem (Have tried Rainfont and read the gu

Post by Play2Die »

lysy1993lbn wrote:Tried myself and font didn't work, but added StringStyle=Bold to meter with that font and it working fine now..

Code: Select all

[MeterOne]
Meter=String
FontFace=FarCry
StringStyle=Bold
FontSize=25
FontColor=255,255,255,255
AntiAlias=1
Text=ABCDEFG#CRLF#abcdefg
Image
It is working fine now, Thank you. :)