Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Fonts links

From: anton:lexicon at: 27-Sep-2002 0:59

That doesn't work on windows, either. You missed the 'font-name dialect keyword: view layout [text "fonts test" font-size 40 font-name "courier"] and you can also do it this way: view layout [text "fonts test" font [name: "courier" size: 40]] or mix it up: view layout [ text "fonts test" font-size 40 font [name: "courier"] ] The three examples above should all give the same result, and they assume you have a font "courier" installed. Anton.