Page 1 of 1

[Resolved] SetGadgetFont(#Gadget, FontID) and EditorGadget

Posted: Wed Feb 01, 2006 2:32 am
by garretthylltun
Is the SetGadgetFont(#Gadget, FontID) intended to work with the
EditorGadget?

My results of trying to use it with the EditorGadget have given me
nothing.

Thanks,
-Garrett

Posted: Wed Feb 01, 2006 4:32 am
by Straker
Really? Seems to work fine for me in Windows:

Code: Select all

Global FontID1
FontID1 = LoadFont(1, "Tahoma", 8)

EditorGadget(#Text_0, 10, 10, 551, 235)
SetGadgetFont(#Text_0, FontID1)
If for OSX, only Fred or another user can reply, but in Windows its working fine.

Posted: Wed Feb 01, 2006 4:52 am
by SEO
Bug or missing features Mac version 3.94

1 - Not possible to create an menu that also works on Windows (Example PB IDE is not working on Mac) (FIXED)
2 - Load Fonts not work...
3 - Not possible to set an 'Composite' flag to windows
4 - File handle, The app bundle not work in 3.94 (FIXED)
5 - File handle, Not possible to create Preference files to the users Preference folder (FIXED)
6 - The button flag #PB_Button_Default not working (FIXED)
7 - The Application icon is not showing in Message requester (FIXED)
8 - Missing Widow types: Floating Window, Drawer Window, Sheet Window ...
9 - Text Encoding, No Text Encoding handle at all
10 - ReadString() Not working with Mac Linebreaks

Posted: Wed Feb 01, 2006 5:03 am
by garretthylltun
Ahhh, thanks SEO :-)

-Garrett