Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!csd4.csd.uwm.edu!cs.utexas.edu!uunet!unsvax!jimi!stevie!jack From: jack@stevie.cs.unlv.edu (The Prism) Newsgroups: comp.sys.amiga.tech Subject: Using multiple fonts with Intuition Message-ID: <1317@jimi.cs.unlv.edu> Date: 8 Sep 89 07:08:12 GMT Sender: news@jimi.cs.unlv.edu Reply-To: jack@jimi.cs.unlv.edu (The Prism) Organization: UNLV Computer Science and Electrical Engineering Lines: 29 I have an Amiga programming question involving using multiple fonts with intuition. First of all, my program sets up the screen using topaz 11 as the standard font, later on however, I want to change fonts to courier 18, but when I print my string, it is still in topaz 11. below are the lines from my program where I try to use courier 11: -------------- struct TextAttr biggerfont = { "courier.font", 18, FS_NORMAL, FPB_DISKFONT, }; struct IntuiText IT2 = { WHITE, 0, JAM1, 100, 100, &biggerfont, "This is a test", NULL, } ... ... ... PrintIText(rport,&IT2,0,0); ... ...