Browse() not working with custom fonts
|
|
Not a bug
BYOND Version: | 514 |
Operating System: | Windows 10 Pro 64-bit |
Web Browser: | Chrome 95.0.4638.69 |
Applies to: | Dream Seeker |
|
Status: |
Not a bug
This is not a bug. It may be an incorrect use of syntax or a limitation in the software. For further discussion on the matter, please consult the BYOND forums.
|
|
|
The problem is: When i try to use browse() with a custom font it does not display at all. When i do it with a non-custom works properly. But when i use the same fonts for maptext they work fine.
var/list/fonts = list('gothic.ttf') src.maptext = "<center><br><br><br><span style=\"\ color: #FFFF00; \ \"><font face='Deutsch Gothic'>Hello!\ </font></span></center>"
The code above works fine.
Now what i try to do that fails:
/mob/verb/test() usr << browse("<font face='Deutsch Gothic'> Test 1 2 3 ", "window=[name]")
|