Re: revFontLoad issue: odd spacing

2015-09-18 Thread Mark Waddingham
Hi Curt, Any ideas? Should I be calling revFontLoad in some other way? My advice would be to not call it at all! This is something we should really mark in the docs - revFontLoad / revFontUnload (and the revFont external) are no longer needed. The engine has built-in support for font loadin

Re: revFontLoad issue: odd spacing

2015-09-18 Thread Roger Eller
Someone recommended that I switch to the start using font syntax. It has helped, but is still not perfect. I have found that if the alignment is off, reloading the font again snaps it into place, so I keep a button onscreen to refresh the fonts. on LoadMyFonts set the itemDel to "/" put it

Re: revFontLoad

2014-12-31 Thread Dan Friedman
Roger, THANKS for the tip! Works without error! I'l try it on Windoz next... Thanks again! -Dan > Search the dictionary for "font". You'll see a newer syntax with more > platforms supported. "Start using font file" and "Stop using font file". > This has worked better than revLoadFont for

Re: revFontLoad

2014-12-31 Thread Roger Eller
Search the dictionary for "font". You'll see a newer syntax with more platforms supported. "Start using font file" and "Stop using font file". This has worked better than revLoadFont for me. Also, include your font in the copy files pane of the standalone builder. ~Roger On Dec 31, 2014 12:19 P

Re: revFontLoad, Unicode and Windows post-XP ?

2013-05-29 Thread Richmond
On 05/29/2013 03:31 PM, Warren Samples wrote: On 05/29/2013 07:09 AM, Richmond wrote: Those chars that are in the standard Unicode places are substituted for a standard Windows-native font, but those in the PPU area are left as they are, kerning rules in either the font or inwith Livecode itsle

Re: revFontLoad, Unicode and Windows post-XP ?

2013-05-29 Thread Klaus major-k
Hi Richmond, Am 29.05.2013 um 15:06 schrieb Richmond : > On 05/29/2013 03:31 PM, Warren Samples wrote: >> On 05/29/2013 07:09 AM, Richmond wrote: >>> >>> Those chars that are in the standard Unicode places are substituted for >>> a standard Windows-native font, >>> but those in the PPU area are

Re: revFontLoad, Unicode and Windows post-XP ?

2013-05-29 Thread Richmond
On 05/29/2013 03:31 PM, Warren Samples wrote: On 05/29/2013 07:09 AM, Richmond wrote: Those chars that are in the standard Unicode places are substituted for a standard Windows-native font, but those in the PPU area are left as they are, kerning rules in either the font or inwith Livecode itsle

Re: revFontLoad, Unicode and Windows post-XP ?

2013-05-29 Thread Warren Samples
On 05/29/2013 07:09 AM, Richmond wrote: Those chars that are in the standard Unicode places are substituted for a standard Windows-native font, but those in the PPU area are left as they are, kerning rules in either the font or inwith Livecode itslef are over-ridden by Windows; something that do

Re: revFontLoad: font size issues?

2011-09-14 Thread Scott Rossi
Recently, Curt Ford wrote: > thanks for the ideas.. I'm not sure what you mean by explicitly > setting the font styling at startup - would that be setting the > textSize & textFont of the stack, or something else? In a handler, or > the stack's property inspector, or both? Yes, I meant cycling th

Re: revFontLoad: font size issues?

2011-09-14 Thread Richmond Mathewson
On 09/14/2011 11:34 PM, Curt Ford wrote: Scott, thanks for the ideas.. I'm not sure what you mean by explicitly setting the font styling at startup - would that be setting the textSize & textFont of the stack, or something else? In a handler, or the stack's property inspector, or both? I've

Re: revFontLoad: font size issues?

2011-09-14 Thread Curt Ford
Scott, thanks for the ideas.. I'm not sure what you mean by explicitly setting the font styling at startup - would that be setting the textSize & textFont of the stack, or something else? In a handler, or the stack's property inspector, or both? I've tried setting the textSize & textFont

Re: revFontLoad: font size issues?

2011-09-14 Thread Scott Rossi
Curt: Are you building on a Mac system and then transferring to Windows? I've found that I have to explicitly set font styling at startup when creating cross-platform stacks that use something other than the default fonts and sizes. You might try this and see if it makes a difference. Another o

Re: revFontLoad

2011-06-18 Thread Björnke von Gierke
basically it's like this: put the fontNames into theCompare answer file "" if it = "" then beep exit to top end if put it into thePath revFontLoad thePath if the fontNames <> theCompare then answer "success!" revFontUnload thePath --not unloading before quitting your app can lead to cra

Re: revFontLoad

2011-06-18 Thread Mark Schonewille
Hi Lars, If you can't get revFontLoad to work, you might use the Installer Maker (link in signature) to install your entire application including the font. Currently, you can get a license for Installer Maker at a 25% discount at http://livetalk.us/im If you are determined to get revFontLoad t

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