Here is a snippet of what I have so far within my Client/script:
client
script = "<STYLE>BODY {background: black; color: white; font: Courier}</STYLE>"
As you can clearly see, I have the font set differently and I am wondering whether or not I can change the size of the text.
Which is why I am querying on whether or not it is possible to resize the text.
I tried 'size: 10px' in the client/script, like so:
client
script = "<STYLE>BODY {background: purple; color: blue; font: Courier; size: 10px}</STYLE>"
When I did this, I was give the following error:
w00t project.dm:3:error: near 10px: unrecognized property 'size'
As you can see, 'size' is not a property, so therefore, I am wondering if there is an actual property to allow me to resize the text...
I hope this is clear enough for you all to understand my problem.
--Lee
What I was looking for is infact the following property;
Pretty simple lol, I don't know how I couldn't have thought about using that earlier :S
--Lee
[EDIT]
Apparently, that theory does not work... Shoot!
[/EDIT]