frondoc picture

What is Frontier?
Download
News & Updates

Web Tutorial
Scripting Tutorial
BBEdit Scripting
Directory

Mailing Lists
Sample Scripts
Verb Set
Frontier Site Outline

Search
Guestbook
BBS

User's Guide
1 2 3 4 5 6
7 8 9 10 11

Apple File Edit
Main Open Suites
Web Window

Menubar Outline
Script Table WP

frondoc picture

How to Create Frontier Install Files

Instructions for commercial software developers on creating Install Files for Frontier script writers.

If you've added Apple Event support to your application and installed the Menu Sharing Toolkit, you're almost ready to ship.

How are script writers going to learn about and benefit from your Apple Event support?

An Example

Check out "Minimal Applet" in the Sample Code folder of Frontier SDK. In addition to being an example of programming with UserLand's Applet Toolkit, it also has a Read Me file, a Frontier install file, and a DocServer text file included in the "MinApp & Frontier" sub-folder.

installFile1 Picture

MinApp.Frontier is a Frontier install file. It contains an embedded script that teaches Frontier how to talk to MinApp.

DocServer Source Text is a text file that contains documentation for the Apple Events that MinApp implements.

Read Me is a text file that contains installation instructions for script writers, and other important information.

The goal of this document is to walk you thru the steps needed to produce an install file and DocServer text for your application.

Getting Started

Make a list. You'll need the following information before configuring Frontier for your application:

  1. Your application's name. It should be short, but not so short as to be cryptic. It must be a language identifier, and therefore should contain no spaces, and it must start with an alphabetic character. Underscores are allowed but not recommended. By convention, application names are MixedCase: like BarChart, QuickMail, PageMaker.

  2. Does your application support menu sharing? For more information, see the Menu Sharing Toolkit folder.

  3. The application file. You may have several copies of your program on your system, Frontier needs to know which copy to launch when communicating with your application.

Set up Frontier

First, launch Frontier. (You can download it from the Frontier home page.)

Choose Commercial Developers from the UserLand Suites sub-menu of the Suites menu. The Glue menu appears in Frontier's menu bar.

Choose Enter Your App's Name from the Glue menu. A series of dialogs guide you thru the process of setting up Frontier to work with your application. Open your glue table. From the Glue menu, choose the Open Table & Menu command. It opens your app's table and shared menu. Bring the table to the front.

Write your first glue script

Let's write a "glue script" to connect to one of the Apple Events implemented in your program. We'll start with a very simple one that simply tells your program to quit.

Bring your glue script table to the front. It's the one named system.verbs.MyApp.

From the Table menu in Frontier, select the New Script... command. Enter the name for your script:

installFile2 Picture

A window opens with an empty script. Enter the following into the new window (use the tab key to indent the second line):

installFile3 Picture

Launch your application. Then bring up Frontier's Quick Script window (press cmd-semicolon) and type:

installFile4 Picture

Then click on the Run button. Frontier runs the MyApp.quit script; in turn, it sends an Apple Event to your application telling it to quit. If you've correctly implemented the required event suite (fingers crossed!) your application should no longer be running.

Let's do another experiment. Bring the Quick Script window to the front and click on the Run button again. You should see an error message:

installFile5 Picture

If you click on the Go To button, Frontier takes you to the place that the error occurred, the call to the appleEvent built-in.

The second glue script

Now let's write a script that connects to the required 'odoc' Apple Event.

In Frontier, bring system.verbs.MyApp to the front, select New Script... from the Table menu and name the script openDocument. Then enter the following script into the new window:

installFile6 Picture

It's important to coerce the file path to the correct type. This allows script writers to call MyApp.openDocument with a string, or a filespec, or any type that can be coerced to an alias. As a general rule, your glue scripts should coerce the type of every parameter to the type that your program expects.

Launch your program, then enter the following into the Quick Script window and click on the Run button:

		MyApp.openDocument ("System:Test Document")

Inside the quotes, enter the full path to a document created by your application. Switch into your application. You should see a window displaying the contents of the document.

The remaining glue scripts

The rest of your glue scripts follow the same pattern. Write one script to connect to each of the Apple Events supported by your application.

To see an example of a complete glue scripts table, double-click on MinApp.Frontier in the Minimal Applet folder, and jump to system.verbs.apps.MinApp.

MyApp.examples

You should include some example scripts to show script writers how to work with your application in a sub-table of your glue script table. Call it examples.

See MinApp.examples for some ideas. They don't have to be profound, actually the simpler the better. Give us ideas on how to access the power of your program.

MyApp.appInfo

An "appInfo" table was created when you entered the name of your application. It has several bits of information that help Frontier work with your application:

  1. app1Supported is a boolean, indicating whether or not the application supports the app1 verb set. It's default value is false.

  2. sharedMenus is a boolean, it indicates whether or not the application implements Frontier's menu sharing protocol.

  3. name is a string, it's used in Frontier messages that mention your application by name. Enter the full name of your product here. For example, the name in the appInfo table for Think C 6.0 is "Think Project Manager," and its verbs are in the Think table.

  4. path is a string, set automatically and maintained by the app.start Frontier verb.

  5. id is a 4-character string, the creator id of your application.

MyApp.id

This is the target of all the Apple Events sent to your application. Usually it is just the creator id of your application. However, if Frontier is talking to your application over a network, it contains the network address of your application.

You should never assign to MyApp.id, it's handled automatically, but all your glue scripts should refer to it.

innerCasing

By convention, the names of glue scripts are innerCase. The first character is lower case. Each new word in the script name begins with an uppercase letter.

Sample code

If you're looking for examples showing how to implement the other side of these glue scripts, have a look at the "Menu Sharer" sub-folder in the Sample Code folder. It implements a single, very simple Apple Event.

'aete' Resources

Terminology or 'aete' resources are the equivalent of Frontier install files for AppleScript. If you already have such a resource for your application, you can use the Commercial suite's "Import 'aete' Info" command to jump-start your glue table. The command scans your application's terminology resource and creates a set of glue scripts for the events you support. It also adds values to your table corresponding to any classes, properties, and enumerators you've defined.

All of the items are named according to the terminology in the resource, with multiple-word names mapped to innerCase identifiers. Classes and properties are represented as string4Type values.

If you fully support the Core or Miscellaneous Standards suites, a set of scripts is created that call Frontier's corresponding core or misc verbs. So in cases where Frontier defines more than one verb for an event, such as core.get and core.getAs, your table will include matching entries. For individual suite events and custom events, a glue script is created directly from the 'aete' data.

Hand-tuning the result

The resulting glue table will be almost ready for prime time. But it should be reviewed carefully, and fine tuned as necessary. In particular, the 'aete' resource doesn't provide a name for an event's "direct" parameter. Frontier makes a best-guess at a name based on the parameter's datatype, but it's likely that you can come up with something more meaningful.

As you go through the hand-tuning process, you may want to take notes about the changes you make. If you end up wanting to re-import from the resource later, you'll need to apply the changes again.

Once you have the glue scripts tuned to your satisfaction, you should think about providing higher-level verbs that build on this basic set. Consider the types of tasks that script writers might want to accomplish with your application; does it make sense to bundle several common steps into a single verb?

For object model applications, there may be events that are likely to be called with a specific set of parameters. For example, a charting application might add a "createNewChart" verb that simplifies the use of the core "create" event. The time you spend smoothing out the scripting interface here will make a lot of difference to script writers.

Your Shared Menu

Where your shared menu lives... If your application's creator id is 'MYAP', the shared menu for your application is at system.menubars.MYAP. Use Frontier's Jump To command (cmd-J) to open your menubar.

When you add menu sharing to your application you're allowing script writers to add commands to your program. When preparing a sample menu to ship with your application, you're providing examples that will show script writers what they can do.

It's created automatically. When you entered your application's name using the Glue menu, a new shared menu is created automatically. Initially this menu has three real commands and three placeholders for demo scripts.

Conventions

The art of developing shared menus has progressed substantially. This section details some of what we've learned. It's a style guide, not hard and fast rules. But a bit of consistency between shared menus will make it easier for people to learn how to write scripts for new apps.

  1. Use hierarchies sparingly.

    If you have ten commands to share as sample scripts, don't use any hierarchies. Keep a balanced appearance, put the same care into organizing the structure of your shared menu as you would with a "hard wired" menu.

  2. One menu, not five.

    Leave lots of room for script writers to be creative. The more menus you write, the less inviting for the script writer. Choose your examples carefully.

  3. Call it the Scripts menu.

    Give it a name to set it off from the rest of your menus. The script writer can change this later.

  4. Include an About command.

    It should be the first item in the menu. Use Frontier's built-in dialog.notify verb to display a short message.

  5. Cmd-M opens the shared menu.

    This should be the second-to-last item in your shared menu. It opens the shared menubar for the script writer to edit it. If cmd-M is already in use in your program, leave the cmd-key blank in the menu bar editor.

  6. Cmd-T opens the scripts table.

    This should be the last item in your shared menu. It opens your application's scripts table. If cmd-T is already in use in your program, leave the cmd-key blank in the menu bar editor.

When your menu bar is created initially it is set up automatically to follow these conventions. Of course you can and should edit it.

Exporting your Install File

When to do it. In the process of releasing Apple Event support for your application, you will export your install file many times. Basically, any time you want to give a copy of your program to a script writer, you should export a current install file and include it with your application.

How to do it. Select Commercial Developers from the Suites menu to add the Glue menu to the menu bar. Be sure that you've entered the name of your application. Then choose Export Install File... from the Glue menu.

DocServer Docs

UserLand includes a copy of DocServer with Frontier. The purpose of DocServer is to provide a quick and simple way for script writers to access documentation for your glue scripts. See the DocServer page for a screen shot and a link to the DocServer website.

In Frontier, open the outline at commercial.sampleDocs. As you browse thru it you'll see that there's a common structure. Each verb has information about its syntax, parameters, action and returned values. Also included are example script fragments and often notes and pointers to other relevent verbs.

To prepare documentation for your verbs, edit this outline. Then select the Compile DocServer Text command to export the outline into a format that can be read by DocServer. To see what your docs look like, launch DocServer and doube-click on the file.

Include this file in your "MyApp & Frontier" folder.

MyApp & Frontier

The Folder. You should prepare a folder called "MyApp & Frontier." You may choose to include it on your shipping disk or upload it to an FTP site. It should contain three files:

  1. Read Me

    You should include a Read Me file in TeachText format. Tell the reader how to install support for your application in Frontier. Keep it direct and simple. You're talking to script writers, they're more technical than the average end user. People will tune out if the installation instructions are too complicated.

  2. MyApp.Frontier

    This is your Frontier install file. This file is created by the Export Install File... command in the Commercial Developer Suite, included in this folder. Details are provided in a separate section.

  3. DocServer Source Text

    This is a text file, produced by the Compile DocServer Text command in the Commercial Developers Suite. It's file type is TEXT, the creator is DOCS. When the script writer double-clicks on this file, UserLand's DocServer app launches and loads the text into its database.

Launching in the background

Many apps assume that the only way they can be launched is by the user double-clicking on something in the Finder, or selecting their application from the Apple menu. In other words, they assume that when they are launched they will be the frontmost application.

However, when a script launches your application it will not be the frontmost application until the script brings you to front. If you are performing a server function for the script, you may never be brought to front.

Therefore, techniques like splash screens work only if they do not require interaction from the user. In fact, it would be more polite to only show a splash screen if you are the frontmost app.

Some early System 7 apps break this rule, and as a result are much less useful to script writers.

A note from Dave Winer

On the Mac Scripting list, Wed, Oct 16, 1996 at 7:30:45 AM...

There have been so many requests for this doc lately. It's included in Frontier SDK. I just converted it from Word format to HTML and put it on the website. It's a doc we published in 1992, written for commercial developers on how to make their apps work well with Frontier. It's mostly about doing install files, which include two things -- a glue scripts table and a sample shared menu.

Before you attempt to do your own glue scripts table, I ask that you send email to the developer of the app pointing them to this page. They know so much more about the Apple Event support in their app, and can do a much better job of it. It's better for script writers if developers take responsibility for their own install files. They'll get to learn how script writers use their software, and it'll give their Apple Event support a chance to evolve and improve like the other features of their programs.

However, if the developer won't do it, these instructions and guidelines should help everyone else. A great example is the Eudora install file. It's been a cooperative effort, started by Leonard, passed off to me, and lately it's been Preston's deal. We'll adopt apps if they're endearing or enticing enough. I dream of a new verb set for FileMaker. Everyone doing their own install files is the totally *wrong* way to go, as realistic as it is. I don't particularly like this reality, because it leads to conflicts and too much trouble.

But if anything I've learned from the scripting experience, is that making-do with what we have is the way of the world...

Onward!

Dave


© Copyright 1996-97 UserLand Software. This page was last built on 5/7/97; 1:36:06 PM. It was originally posted on 10/16/96; 6:29:46 AM. Internet service provided by Conxion.