ID:165671
![]() Nov 16 2006, 7:44 pm
|
|
I was wondering if there was anyway to change the font type of one of those things. Or is it just default times of new roman. becasue I have special font types that i need to use.
|
![]() Nov 16 2006, 8:36 pm
|
|
You can change the style for browse() all you want with HTML or CSS. I don't believe you can change the style of alerts, though.
|
I have a special font that have and i was wondering how I would use HTML to enter in browsers. Can u give me an example of how to do this. I have this code for my browser but want to change the font type to want I want it to be. Would I have to put the font file into the dm?
usr<<browse(News,"window=News;size=270x325") var/const/News = {"<body bgcolor=black><font color=#008B8B size=2> |
Putting this in the head of your HTML document would set the background color to black, the text color to white, and the font to whatever you specify:
<style type="text/css"> body { background-color: black; color: white; font-family: Your font name here } </style> You'd have to convince your players to get the font themselves, though. People who didn't have it would just see the default, and there's no way to put your font in their fonts folder. You might try looking at your default fonts to see if there are any resembling your custom one. |