#!/bin/ksh # $Revision: 1.1 $ #------------------------------------------------------------------------------ # # Copyright (C) 1994 Taligent, Inc. All rights reserved. # # Project: Tiles # File: TilesTutorialApp # Build/Version: D34.8 # # Description: Script for launching TilesTutorial program via # RunDocument. You can supply a document name. If that # document exists, it will open the old document. If # it doesn't, it creates and opens a new document. If # you don't supply a document name, RunDocument will # use "Untitled" as the new document to try and create. # #------------------------------------------------------------------------------ if [ -n "$1" -a -d $TaligentRoot/$1 ]; then RunDocument -o $1 else RunDocument -c "TGUIModelViewStationeryFor" TilesPKG -o $1 fi