Have you ever tried to make only a single word bold-faced, or add a smiley to you text in you GM game. If you have then you would know that you have to set the font, then draw the first part of the text, set the font to bold, find the end position and call draw text again for one stupid word, and then set the font back to the way it was, find the end position of that and then call draw_text for the rest

(GM7) HTML-to-GML ver 2.3:
http://gmbase.cubedw...xtension&id=127
- Ultimate Game Arena, my old site was finally removed from the web after 6 months of free web space. Therefore I've have moved the file to a new site wanting to put together a list extensions(And as always I'm happy to help).
- I know I haven't updated this in a while, but I'm working on a new game called World Domination right now. This is first on my list once that's done.
- I have had my name changed from The Shadow to Sandro....I would really like if you would make necessary changes in the credits
- The Example was removed for version 2.3; I'll add it in 2.4 witch I hope to release either tonight or within the next few days.
- The help file has not been updated since version 2.2. You must consider the following change
<font_name>, <font_size>, and <font_color> have been removed. You must now use the <font> tag. You have 4 attributes to chooses from. You may use any number of the attributes and in any order. The attributes are:
face - The Font Name
size - The Font Size
color - The Font Color
align - The Font Align(Left, Right, or Center)
All attributes must be surrounded in single quotes( ' ) and can't contain spaces next to the equal sign( = ).
Good Examples:
<font size='10' color='red' align='left'>
<font size='10'>
<font color='blue' align='center'>
<font align='center'>
Bad Examples:
<size='10'> // Must have the word font
<font size=10> // Must have single quotes
<font size = '10'> // Can't have spaces
<font size="10"> // Must have single quotes, NOT DOUBLE
To-do List
- Make a better help file
- add support for word wrap
- add support for BB code
- add support for <input>
- add support for <table>
- Finish windows API(more on this later)
- add support for XML and XSL (maybe)
I spend a lot of time on this, so comments and suggestion are very much welcome.
http://gmbase.cubedw...xtension&id=127