01-13-2025, 10:17 AM
Jack002
you showed file properties of font that was downloaded. you might have to check "unblock" in the dialog at the bottom. sometimes windows is hard about this.
is the typical path that is used on unix and its descendants (especially linux) to indicate the user's home directory. on my example program i indicated where is a good place to put fonts. otherwise must put it into protected area like /usr/share/fonts. which is a bigger hassle than what you are going through.
that's why i advised you to use hard coded full path in program for windows.
as i've said, i don't know if windows still allows installing fonts into C:\windows\fonts. i took another look at the properties dialog to notice the font was installed in deep "local" area for user. will have to get the entire path of that, or will have to move the font file to another location.
you showed file properties of font that was downloaded. you might have to check "unblock" in the dialog at the bottom. sometimes windows is hard about this.
Code: (Select All)
ENVIRON$("HOME")
that's why i advised you to use hard coded full path in program for windows.
as i've said, i don't know if windows still allows installing fonts into C:\windows\fonts. i took another look at the properties dialog to notice the font was installed in deep "local" area for user. will have to get the entire path of that, or will have to move the font file to another location.