Where do Command-C and Command-V get handled?

2008-11-11 Thread David Epstein
In my own customized defaultMenuBar, I have included an Edit menu with my own copy and paste commands, with command-C and command-V equivalents defined using the / convention. When those commands are chosen from the menu, my copy and paste scripts are executed as expected. But when I use the

RE: Where do Command-C and Command-V get handled?

2008-11-11 Thread Hugh Senior
/attachments/2008/3708b7fc/atta chment-0001.html -- ___ metacard mailing list metacard@lists.runrev.com http://lists.runrev.com/mailman/listinfo/metacard End of metacard Digest, Vol 61, Issue 5

Embedding fonts in Metacard

2008-11-11 Thread Shari
I could swear the answer to this exists somewhere but I've looked high and low to no avail. I know that revLoadFont exists for Revolution. I thought I read where it became part of the engine. I saw the synonym XLOAD_FONT in the Rev docs so I thought perhaps that call would work in Metacard.

Re: Where do Command-C and Command-V get handled?

2008-11-11 Thread J. Landman Gay
David Epstein wrote: In my own customized defaultMenuBar, I have included an Edit menu with my own copy and paste commands, with command-C and command-V equivalents defined using the / convention. When those commands are chosen from the menu, my copy and paste scripts are executed as expected.

Re: Embedding fonts in Metacard

2008-11-11 Thread J. Landman Gay
Shari wrote: I could swear the answer to this exists somewhere but I've looked high and low to no avail. I know that revLoadFont exists for Revolution. I thought I read where it became part of the engine. I saw the synonym XLOAD_FONT in the Rev docs so I thought perhaps that call would

Re: Embedding fonts in Metacard

2008-11-11 Thread Shari
It's an external, a dll on Windows and a bundle on Macs. You'll need to ship the appropriate external with your app, and set the externals property of your mainstack to point to the file's location. Then you can use revFontLoad and revFontUnload to manage the fonts. Thankee! How's the

Re: Embedding fonts in Metacard

2008-11-11 Thread J. Landman Gay
Shari wrote: It's an external, a dll on Windows and a bundle on Macs. You'll need to ship the appropriate external with your app, and set the externals property of your mainstack to point to the file's location. Then you can use revFontLoad and revFontUnload to manage the fonts. Thankee!