Re: revFontLoad Question

2011-01-24 Thread Marty Knapp
Good to know Trevor - thanks. I've been testing this out, loading the font in the startup handler. So far so good. Marty Hi Marty, I include a password font with some of my applications that I load with revFontLoad. I store the file in the bundle alongside my application stacks. I've never had

Re: revFontLoad Question

2011-01-24 Thread Trevor DeVore
On Sat, Jan 22, 2011 at 3:49 PM, Marty Knapp wrote: > I want to package a font with my Mac only app and use revFontLoad to load > it into memory. Is there a problem with just tucking it inside the > application bundle and loading it from there? Or should I put it into a > custom property and then

Re: revFontLoad Question

2011-01-22 Thread Marty Knapp
Thanks for your input Mark, I would agree that properly installing the font is the best approach. But as I can't seem to get my question answered by Apple about requirements for the Mac app store, I'm assuming that they won't allow it. I did some tests quite a while ago with revFontLoad and

Re: revFontLoad Question

2011-01-22 Thread Mark Schonewille
Hi Marty, Mac OS X 10.5 and later might detect the usage of your font, before your script gets a chance to load that font. If that happens, the user will see a system dialog window, asking whether to allow your application to use that font. This might also happen, if your application writes th

Re: revFontLoad Question

2011-01-22 Thread Marty Knapp
Thanks Stephen - I appreciate the input. Marty Inside the bundle is exactly the place where apple WANTS you to put such things. That's what it was designed for, as against the Windows method of all the files alongside. The idea is user convenience for installing and uninstalling. Nice and neat.

Re: revFontLoad Question

2011-01-22 Thread stephen barncard
Inside the bundle is exactly the place where apple WANTS you to put such things. That's what it was designed for, as against the Windows method of all the files alongside. The idea is user convenience for installing and uninstalling. Nice and neat. A great feature of MacOSX. Bundles are used for

Re: revFontLoad Question

2011-01-22 Thread Marty Knapp
Thanks Stephen, Yes, I have written permission to distribute the font. I was wondering more about the advisability of accessing it inside the app bundle as opposed to writing it out to another location and loading it from there. In its current form, my app installs the font into the Fonts fol

Re: revFontLoad Question

2011-01-22 Thread stephen barncard
I would just make sure and check the fine print on distribution rights of the font, and what the terms are. If it's an open source font it should be ok. Milage may vary. On 22 January 2011 14:49, Marty Knapp wrote: > I want to package a font with my Mac only app and use revFontLoad to load > it

revFontLoad Question

2011-01-22 Thread Marty Knapp
I want to package a font with my Mac only app and use revFontLoad to load it into memory. Is there a problem with just tucking it inside the application bundle and loading it from there? Or should I put it into a custom property and then write it out to the user's hard drive and put it into use