1.1 AppleScript Basics
|
|
|
- Maria Martin
- 9 years ago
- Views:
Transcription
1 13Working with AppleScript This guide provides helpful information and examples for using AppleScript to automate the Macintosh version of KaleidaGraph. A variety of sample scripts, from basic to complex, demonstrate how to control KaleidaGraph from an Apple Event engine. Before you begin, it is important to note that the following sections are not intended to teach you how to use AppleScript. If you are new to AppleScript, it is highly recommended that you read a book that thoroughly explains the use of AppleScript. One such book is The Tao of AppleScript, written by Derrick Schneider, Hayden Books. You also need to understand that KaleidaGraph is capable of being driven by an Apple Event engine, but KaleidaGraph itself is not an Apple Event engine. The only way to control KaleidaGraph or any other application is through the use of an Apple Event engine, such as AppleScript. 1.1 AppleScript Basics The following terms are used throughout the examples in this guide. integer - Any positive whole number, including zero (0, 1, 2, 3,...). string - A maximum of 255 characters surrounded by quote marks ("). Boolean - yes/no/true/false white space character - space/tab The following AppleScript commands are also used in the examples. If you are not familiar with any of these commands, it is recommended that you do so before continuing. activate contains get list folder set & (ampersand) copy if repeat tell as display dialog info for result 1.1 AppleScript Basics 1
2 KaleidaGraph Comments can be added to a script in one of two ways. The first method is to precede any comments with two hyphens (--). This is useful for single-line comments. The second method is to place the (* and *) characters at the beginning and end of the comment. This is useful for multi-line comments. Anytime you want to use quote marks (") within a string in AppleScript s Script Editor, a backslash (\) must precede each quote mark. The reason for this is quote marks indicate the beginning and end of text strings. For example, the text string "file=\"filename\"" contains backslashes prior to the quote marks within the text string. 1.2 KaleidaGraph Dictionary Overview AppleScript has a way to view what specific events an application supports for use in a script. This is accomplished by choosing Open Dictionary from the File menu in the Script Editor and selecting the application of interest. All of the events supported by the application are displayed in a dialog. You can select a specific event and obtain general information about it. The events supported by KaleidaGraph fall under two categories. The first category is the required suite of events, which are common events that every application should support. The Run, Open, Print, and Quit events are all considered part of the required suite. The remaining events fall into the second category, which is KaleidaGraph events. These are events which only pertain to the KaleidaGraph application. Examples of these events include AppendColumn, RunTextScript, and Rebuild. The events in this section are listed in alphabetical order. Please note that this is not the same way that they are listed in the Dictionary itself. This was done to make it easier to locate a specific event. The syntax used in the examples is: event - description of the event, including any default settings event parameters [optional parameters, where applicable] [Result of executing the event, where applicable] examples using the event Note: The optional parameters are enclosed in brackets to differentiate them from the required parameters. The result returned by the script is also enclosed in brackets to keep it separate from the event and its parameters KaleidaGraph Dictionary
3 1.2.2 List of Events Working with AppleScript AppendColumn - This event appends one or more columns of data to the right of any existing data in the frontmost data window. The data should be tab-separated and stored as a string. The first row in the string may optionally contain titles. By default, the first row is assumed to contain data. AppendColumn string [Titles Boolean] set item1 to " " set item2 to "Time Test #1 Test # " GetData "-1" set string1 to result AppendColumn string1 SelectWindow "Data 2" AppendColumn item1 SelectWindow position 3 AppendColumn item2 with Titles AppendRow - This event appends one or more rows of data below any existing data in the frontmost data window. The data should be tab-separated and stored as a string. The first row in the string may optionally contain titles. By default, the first row is assumed to contain data. AppendRow string [Titles Boolean] set item1 to " " set item2 to "Time Test #1 Test # " GetData "-1" set string1 to result AppendRow string1 SelectWindow "Data 2" AppendRow item1 SelectWindow position 3 AppendRow item2 with Titles 1.2 KaleidaGraph Dictionary 3
4 KaleidaGraph Close - This event closes a single window. The frontmost window is closed by default, unless a window is specified by either its name in the title bar or by its position (from front to back, where the frontmost window is position 0). The default action is to ask if any changes should be saved; however, it is possible to automatically save the changes or to close the window without saving its contents using the saving option. Close string [position integer] [saving yes/no/ask] Close "Data 1" Close position 1 Close without saving Close position 3 with saving CloseAllWindows - This event closes all visible windows, without saving their contents. CloseAllWindows CloseAllWindows CloseFrontWindow - This event closes the frontmost window, without saving its contents. CloseFrontWindow CloseFrontWindow ExportPlot - This event exports the frontmost plot to a file or to the Clipboard (provided KaleidaGraph is the frontmost application). By default, the file is stored in the current directory. You can specify a different location by either using the SetRefDirectory command or including the path in the file name. The attributes of the file can be set as part of a string and are listed under the #PICT/OPT Formula Script command, which is discussed in Section of the KaleidaGraph manual. ExportPlot string [Name alias] [Clipboard Boolean] [Result: picture] set item2 to " type = pict scale 50 post_pict yes file = \"Sample PICT\"" activate ExportPlot item2 ExportPlot with Clipboard KaleidaGraph Dictionary
5 Working with AppleScript GetData - This event makes a selection in the frontmost data window and stores the data within it as a string of tab-separated data. The selection range should be a string containing numbers separated by any white space characters, where the ordering is (start row, end row, start column, end column). As a special case, if start row has a value of -1, the entire window is selected. The selection addresses for both row and column positions begin at 0 and are counted from the upper-left corner of the data window (position 0,0). GetData string [Result: string] GetData "-1" GetData " " GetWindowName - This event returns the name of one or more windows. If a specific window position (from front to back, where the frontmost window is position 0) is given, the name of the window is returned as a string. Otherwise, the names of all windows are returned in a record. GetWindowName [position integer] [Result: string or record] GetWindowName GetWindowName position 1 LoadPlotScript - This event imports the specified plot script file. LoadPlotScript string set item1 to "Macintosh HD:Examples folder:scripts:test script" LoadPlotScript "Macintosh HD:Examples:Sample script" RunPlotScript LoadPlotScript item1 RunPlotScript Open - This event opens the specified file. It can be used to open any type of file which KaleidaGraph recognizes. Open alias string set item1 to "Macintosh HD:Examples:sunspot data" Open alias "Macintosh HD:Examples:Housing Starts" Open alias item1 copy {"Macintosh HD:sunspot data", "Macintosh HD:Sample Plot"} to List1 repeat with i in List1 Open alias i end repeat 1.2 KaleidaGraph Dictionary 5
6 KaleidaGraph OpenDatafile - This event is used to open binary and text data files. For all other types of files (plots, styles, macros), use the Open event. The attributes of the data file can be set as part of a string and are listed under the #DATAFILE Formula Script command, which is discussed in Section of the KaleidaGraph manual. OpenDatafile string [Name alias] [Result: string] set item1 to "Macintosh HD:KaleidaGraph 3.0:Examples folder:scripts:" set item2 to "file = \"Macintosh HD:Test folder:example - text\" delimiter = tab skip = 3 read_titles = yes" SetRefDirectory item1 OpenDatafile "file = \"sunspot data\"" OpenDatafile item2 PlotPrint - This event prints one or more plots. By default, the frontmost plot is printed directly from the plot window. It is possible to print multiple plots from the layout window using the PageLayout option. PlotPrint [PageLayout Boolean] PlotPrint SetSelection " " Rebuild PlotPrint with PageLayout Print - This event prints the specified file. It can be used to print any data (binary or text) or plot file. Print alias string set item1 to "Macintosh HD:Examples:Test plot" Print alias "Macintosh HD:Examples:Sample plot" Print alias item1 copy {"Macintosh HD:sunspot data", "Macintosh HD:Sample Plot"} to List1 repeat with i in List1 Print alias i end repeat KaleidaGraph Dictionary
7 Working with AppleScript Quit - This event quits the KaleidaGraph application. The default action is to ask if any changes should be saved; however, by specifying an option it is possible to automatically save the changes or to quit without saving. Quit yes/no/ask Run activate Quit no Ready - This event checks to see if KaleidaGraph is up and running. Ready [Result: Boolean] repeat while (Ready) is false end repeat Rebuild - This event rebuilds the plot based on the current selection in the data window. Rebuild SetSelection " " Rebuild Run - This event launches the KaleidaGraph application. Run Run RunPlotScript - This event executes the current plot script. RunPlotScript LoadPlotScript "Macintosh HD:Examples:Sample script" RunPlotScript 1.2 KaleidaGraph Dictionary 7
8 KaleidaGraph RunTextScript - This event executes the text script stored as a string. This event can execute any of the Formula Script commands listed in Section of the KaleidaGraph manual. If you are using the #FORMULA command, it is not necessary to include the #FORMULA and #END statements for this command. It is the default action for the RunTextScript event. RunTextScript string [Result: picture] set item1 to " #PASTE title = true #END" set test1 to "macro(\"integrate - Area\")" set test2 to " #SCRIPT plot_type=scatter begin_group x 0 y 1 end_group #END" RunTextScript " c4=mean([0:0, 1:3]); c5=stderr([0:0, 1:3]);" RunTextScript item1 RunTextScript test1 RunTextScript test2 SelectWindow - This event selects a window specified either by name (in the title bar) or by position (from front to back, where the frontmost window is position 0). SelectWindow string [position integer] set item3 to "Data 3" SelectWindow position 1 SelectWindow "Data 1" SelectWindow item KaleidaGraph Dictionary
9 Working with AppleScript SendData - This event sends data to KaleidaGraph to be displayed in a new data window. The data should be tab-separated and stored as a string. By default, the first row is assumed to contain titles. SendData string [Titles Boolean] set item1 to " " if Ready is true SendData item1 without titles end if SetRefDirectory - This event sets the Reference Directory. The string is a fully or partially qualified path to the desired directory. The path should end in a colon (:) if the last name is not a file. To move up one directory, the path should be represented by two colons ("::"). To set the default directory to be the application directory, the path should be left blank(""). SetRefDirectory string set item1 to "Macintosh HD:KaleidaGraph 3.0:Examples folder:sample Data:" SetRefDirectory item1 OpenDatafile "file = \"sunspot data\"" SetRefDirectory "Macintosh HD:Test folder:" OpenDatafile "file = \"example #1\"" SetSelection - This event makes a selection in the frontmost data window. The selection range should be a string containing numbers separated by any white space characters, where the ordering is (start row, end row, start column, end column). As a special case, if start row has a value of -1, the entire window is selected. The selection addresses for both row and column positions begin at 0 and are counted from the upper-left corner of the data window (position 0,0). SetSelection string GetData " " set string1 to result SelectWindow position 1 SetSelection " " AppendColumn string1 1.2 KaleidaGraph Dictionary 9
10 KaleidaGraph 1.3 AppleScript Examples All of the examples in this section follow the same basic format. An overview describes what the script is going to do. Then the example script is listed, just as it would appear if it were being entered directly into AppleScript s Script Editor. Following the script is an explanation which describes each step of the script. Note: The following examples do not use the Run event. This is because the tell command launches KaleidaGraph if it is not already running Basic Examples Basic Example 1 This example script performs the following functions: Makes a data selection in the frontmost data window and stores it as a string. Selects the second window from the front. Appends the string to the frontmost data window. Brings KaleidaGraph to the foreground. The example script is listed below, followed by a description of how it operates. GetData "-1" set string1 to result SelectWindow position 1 AppendColumn string1 activate The GetData command selects all of the cells in the frontmost data window and stores it as a text string of tab-separated data. This text string is then stored in a variable called string1 using the set command. The SelectWindow command activates the second window from the front (position 1). The AppendColumn command appends the data from string1 into the frontmost data window. The activate command makes KaleidaGraph the active application. Basic Example 2 This example script performs the following functions: Opens a data file. Performs calculations on the data set. Closes the data window, after saving changes AppleScript Examples
11 Working with AppleScript The example script is listed below, followed by a description of how it operates. Open alias "Macintosh HD:KaleidaGraph 3.0:Examples folder:sample Data:Housing Starts" RunTextScript " c4=mean([0:0, 1:3]); c5=stderr([0:0, 1:3]);" Close with saving The Open command opens the specified data file. The RunTextScript command executes two Formula Entry commands which calculate the mean and standard error on a portion of the data file. The Close command saves the data file and closes the data window. Basic Example 3 This example script performs the following functions: Makes a selection in the frontmost data window. Executes two Formula Entry commands. Creates a Scatter plot of the raw data. Brings KaleidaGraph to the foreground. The example script is listed below, followed by a description of how it operates. set test1 to " c0 = index()+1; c1 = log(c0);" set test2 to " #SCRIPT x axis limits plot_type=scatter begin_group x 0 y 1 end_group #END" SetSelection " " RunTextScript test1 RunTextScript test2 activate The two set commands at the beginning of the script store text strings in the test1 and test2 variables. The test1 string contains two Formula Entry commands. The test2 string contains information for running a plot script. The SetSelection command selects rows 0 through 99 in column 0 of the frontmost data window. The first RunTextScript command creates two columns of data in the data window by executing two commands from Formula Entry. The second RunTextScript command generates a Scatter plot of this data. The activate command makes KaleidaGraph the active application. 1.3 AppleScript Examples 11
12 KaleidaGraph Intermediate Examples Intermediate Example 1 This example script performs the following functions: Checks to see if KaleidaGraph is running. Selects two different windows and brings them to the front. Appends data to each of these data windows. The example script is listed below, followed by a description of how it operates. set item1 to " " set item2 to "Time Test #1 Test # " repeat while (Ready) is false end repeat SelectWindow "Data 1" AppendColumn item1 SelectWindow position 1 AppendColumn item2 with Titles activate The two set commands at the beginning of the script store text strings in the item1 and item2 variables. The item1 string contains five rows of data without any titles. The item2 string contains six rows of data, with column titles in the first row. The repeat loop uses the Ready command to see if KaleidaGraph is running. If not, the script waits until KaleidaGraph has launched. The SelectWindow command brings the window titled Data 1 to the front. The AppendColumn command appends the data in the item1 string to this data window. The second SelectWindow command activates the second window from the front. The second AppendColumn command operates in the same manner as the first, except that this time the first row contains titles. The activate command makes KaleidaGraph the active application AppleScript Examples
13 Working with AppleScript Intermediate Example 2 This example script performs the following functions: Opens a saved data file. Creates a Line plot. Saves the plot as a PICT file. The example script is listed below, followed by a description of how it operates. set path1 to "Macintosh HD:KaleidaGraph 3.0:Examples folder:sample Data:" set item1 to " #SCRIPT y axis title \"Range\" plot_type = Line begin_group x 0 y 1 y 2 y 3 end_group #END" set item2 to " type = pict scale 50 post_pict yes file = \"Sample PICT\"" SetRefDirectory path1 OpenDatafile "file = \"sunspot data\"" RunTextScript item1 ExportPlot item2 The three set commands at the beginning of the script store text strings in the path1, item1, and item2 variables. The path1 string contains the path to the Sample Data folder. The item1 string contains information for running a plot script. The item2 string contains the parameters for exporting a PICT file. The SetRefDirectory command sets the current directory to the string contained in path1. The file named sunspot data in the current directory is opened using the OpenDatafile command. The RunTextScript command executes the Plot Script defined in the item1 string. The ExportPlot command saves the newly created plot as a PICT file. The file is saved in the same directory as the original data file. 1.3 AppleScript Examples 13
14 KaleidaGraph Intermediate Example 3 This example script performs the following functions: Checks to see if KaleidaGraph is running. Generates data using two commands from Formula Entry. Loads and executes a saved plot script. The plot script is assumed to use a template which has a Polynomial curve fit and error bars applied to it. Stores the curve fit values in the data window and calculates the residuals. Updates the plot to include the new data and prints it. The example script is listed below, followed by a description of how it operates. set data1 to " macro(\"π Series\"); macro(\"sinc(5x)\");" set data2 to " c3=poly(c0,c1); name(\"residuals\", c2); c2=c3-c1;" repeat until Ready end repeat RunTextScript data1 LoadPlotScript "Macintosh HD:KG Script" RunPlotScript RunTextScript data2 Rebuild PlotPrint The two set commands at the beginning of the script store text strings in the data1 and data2 variables. The data1 string contains two formulas which execute two macros from the Macros menu. The data2 string contains formulas for calculating the values and residuals of a Polynomial curve fit. The repeat loop uses the Ready command to see if KaleidaGraph is running. If not, the script waits until KaleidaGraph has launched. The first RunTextScript command creates two columns of data. The LoadPlotScript command imports a saved plot script, which is executed by the RunPlotScript command. The second RunTextScript command calculates the values and residuals of the Polynomial curve fit. The Rebuild command updates the plot to reflect the changes made to the data window by the previous formulas. The resulting plot is printed using the PlotPrint command AppleScript Examples
15 Working with AppleScript Advanced Examples Advanced Example 1 This example script performs the following functions: Prompts the user to enter the full path to a data file. Opens the data file and a saved Style file. Creates a Column plot of the data and prints it. Makes a selection in the data window. Rebuilds the plot and prints it. The example script is listed below, followed by a description of how it operates. set test1 to " #FORMULA c4=mean([0:0, 1:3]); name(\"average\", c4); #END #SCRIPT y axis title \"Range\" plot_type column begin_group x 0 y 1 y 2 y 4 end_group #END" display dialog "Please enter the path to the data file." default answer "" buttons {"OK", "Cancel"} default button "OK" set rec1 to result get text returned of rec1 set path1 to result Open alias path1 Open alias "Macintosh HD:Modified Style" RunTextScript test1 PlotPrint SelectWindow position 1 SetSelection " " Rebuild PlotPrint The set command at the beginning of the script stores two formulas and the information for running a plot script into the test1 variable. 1.3 AppleScript Examples 15
16 KaleidaGraph The display dialog command prompts the user to enter the full path to a data file, which is opened later by the script. The two set commands and the get command that follow are used to store the full path in the path1 variable. The first Open command opens the specified data file. The second Open command opens a saved Style file. The RunTextScript command executes the commands in the test1 string which calculate the mean and generate a plot. The plot is printed using the first PlotPrint command. The SelectWindow command brings the data window to the front. The SetSelection command causes rows 0 to 5 in columns 0 through 4 to be highlighted. The Rebuild command causes the plot to be updated using the data which is currently selected in the data window. The second PlotPrint command prints the updated plot. Advanced Example 2 This example script performs the following functions: Determines the file types of all files in a specified folder. Opens any KaleidaGraph binary data files that are found. Opens any text files using the specified file format. Displays a dialog showing the total number of files that were opened. The example script is listed below, followed by a description of how it operates. set path1 to "Macintosh HD:Examples:" set item1 to " delimiter = tab skip = 5 read_titles = yes del_number = 1" set x to 0 list folder path1 set List1 to result repeat with i in List1 set item2 to path1 & i info for file item2 set rec1 to result if rec1 contains {file type:"qdat"} or rec1 contains {file type:"text"} then if rec1 contains {file type:"qdat"} then Open alias item2 copy x + 1 to x else set item3 to (("file =" & "\"" & item2) & "\"") & item1 OpenDatafile item3 copy x + 1 to x end if end if end repeat display dialog (result as string) & " data windows were opened by the script." AppleScript Examples
17 Working with AppleScript The three set commands at the beginning of the script store strings in the path1 and item1 variables, in addition to storing a value of 0 in the x variable. The path1 string contains the path to the Examples folder. The item1 string contains parameters for importing a text file into KaleidaGraph. The list folder command compiles a list of all the items in the folder specified by path1. The set command stores this list in the List1 variable. The repeat command sets up a loop so that the commands in the loop operate on each file in the folder. The i variable stores the name of the file currently being evaluated. The first set command within the loop concatenates the path1 and i strings into a single string. This string is stored in the item2 variable. The info for command obtains a list of information about the specific file. Using the second set command in the loop, this information is stored as a record in the rec1 variable. The if command tests if the file type of each file is either QDAT or TEXT (QDAT is the file type for KaleidaGraph binary data files and TEXT is the file type for generic text files). If the file type does not match either one of these, the file is skipped and the script operates on the next file in the folder. If the file type is QDAT, the file is opened using an Open command. If the file type is TEXT, the set command concatenates five text strings and stores the resulting string in the item3 variable. The file is then opened using the OpenDatafile command. The copy command increases the value of the x variable each time a data file is opened. After all of the files have been processed, the display dialog command shows how many files were opened by the script. 1.3 AppleScript Examples 17
18 KaleidaGraph Advanced Example 3 This example script performs the following functions: Displays four dialogs so the user can enter the path to the folder containing the data files, the base name of the data files, the number of files to be opened, and the number of columns in each file. The data files are assumed to have the same base name followed by a numeric suffix (for example, data_1, data_2, data_3, where data_ is the base name). Merges the specified number of data files into a single file. The example script is listed below, followed by a description of how it operates. set part1 to " #MERGEFILE file = \"" set part2 to "\" delimiter = tab skip = 3 read_titles = yes del_number = 1 position = 0 " set part3 to " #END" set x to 1 display dialog "Please enter the path to the data files." default answer "" buttons {"OK", "Cancel"} default button "OK" set rec1 to result get text returned of rec1 set path1 to result display dialog "Please enter the base name of the data files." default answer "" buttons {"OK", "Cancel"} default button "OK" set rec2 to result get text returned of rec2 set base to result display dialog "Please enter the number of files to be opened." default answer "" buttons {"OK", "Cancel"} default button "OK" set rec3 to result get text returned of rec3 set num to result as number display dialog "Please enter the number of columns in the files." default answer "" buttons {"OK", "Cancel"} default button "OK" set rec4 to result get text returned of rec4 set col to result as number repeat until x > num copy col * (x - 1) to colnum set name1 to path1 & base & x as string set item1 to (part1 & name1 & part2 & colnum as string) & part3 RunTextScript item1 copy x + 1 to x end repeat AppleScript Examples
19 Working with AppleScript The first three set commands define portions of a #MERGEFILE command so that the script can substitute the file name and the starting location where the file should be merged. The fourth set command stores a value of 1 in the x variable. The script uses four display dialog commands to enter information about the files which will be merged. The first dialog prompts for the path to the data files, which is stored in the path1 variable. The second dialog prompts for the base name of the files, which is stored in the base variable. The third dialog asks for the number of files to be merged, which is stored in the num variable. The last dialog asks for the number of columns in the files, which is stored in the col variable. The repeat command sets up a loop that runs until the specified number of files have been merged. The copy command stores the current column number in the colnum variable. The first set command in the loop combines the path1, base, and x strings into a single string, which is stored in the name1 variable. The second set command combines the various portions of the #MERGEFILE command, the name1 string, and the starting column number into a single string, which is stored in the item1 variable. The RunTextScript command executes the string stored in item1 to merge each file into the frontmost data window. The copy command increases the x variable by Tips You may want to place a repeat loop at the beginning of your scripts so that the script waits until KaleidaGraph has finished launching before it continues. This is particularly important when the script requires a data window, such as when using Formula Entry commands. If KaleidaGraph is not running, the script may attempt to execute the formulas before a data window has been created, resulting in an error. The first and last example scripts in Section make use of the repeat loop in conjunction with the Ready command. KaleidaGraph and AppleScript do not have any special commands for selecting commands or buttons in dialogs. You need to have a supplemental program like QuicKeys (a commercial package from CE Software) to perform these types of functions. The only way to apply curve fits or error bars to a plot, without using a supplemental application, is to open a saved plot script. The saved plot script needs to be pointed at a template which has the curve fit or error bars already applied. Any plots created by the plot script automatically have any curve fits or error bars applied. If you need to generate the trademark symbol ( ), it can be created by typing Option+2. It is not possible to create this symbol with the 2 key located on the numeric keypad. 1.4 Tips 19
20 KaleidaGraph 1.5 Troubleshooting If you run into problems when attempting to execute your script, AppleScript has two commands in the Controls menu which can help you see what is happening. The Show Result command displays the result returned by the last script. The Open Event Log command displays all of the events sent by a script as it executes. Beware of System Extensions that modify the Open and Save dialogs. You may have problems saving files into a different directory unless these kinds of extensions are disabled. Errors can result if any of the following occur: Specifying a position number for which no window exists. Specifying a window by an incorrect name. Trying to use the GetData or SetSelection events when no data windows are open. Trying to use the ExportPlot, PlotPrint, or Rebuild events when no plot windows are open. When using the Formula Script commands within the RunTextScript command, errors result if the # statements are not entered in all capital letters or if any lines within a Formula Script command are indented. The Formula Script commands should line up with the tell command in the script. To successfully use the #COPY command as part of a RunTextScript event, KaleidaGraph must be made the active application prior to copying data to the Clipboard. The easiest method to do this is to place an activate command prior to the RunTextScript event. Otherwise, the information on the Clipboard is not altered when the #COPY is executed. This is because it is only possible to replace the contents of the Clipboard from the frontmost application. Under System 7.5 or later, the General Controls control panel has a setting which can interfere with the SetRefDirectory command. The Documents portion of the General Controls dialog must have the Folder which contains the application option selected for this command to work properly Troubleshooting
21 Working with AppleScript 1.6 Apple Events KaleidaGraph supports the following set of Apple Events. A description for each of the events is located after the table. Events (Class: QKPT) ID Direct Optional Return Meaning call none none none Close all visible windows without saving. cfns none none none Close the frontmost window without saving. clos TEXT none none Close the specified window, optionally saving its contents. epic TEXT FILE PICT (opt) Export the frontmost plot to a file or the Clipboard as a PICT. gsel TEXT none TEXT Get the specified data selection from the frontmost data window. kdoc TEXT FILE none Load the specified data file. kgqt none none none Quit KaleidaGraph as soon as possible. ldac TEXT none none Append one or more columns of data to the frontmost data window. ldap TEXT none none Append one or more rows of data to the frontmost data window. ldat TEXT none none Load tab-separated data, which has titles in the first row. ldnt TEXT none none Load tab-separated data, which has data in the first row. lscp TEXT FILE none Load the specified plot script. oapp none none none Run the application. odoc TEXT FILE none Open the specified documents. pdoc TEXT FILE none Print the specified documents. prpl TEXT none none Print one or more plots. quit TEXT none none Quit the application. redy none none none Check to see if KaleidaGraph is running. refd TEXT or typefss none none Set the reference directory. 1.6 Apple Events 21
22 KaleidaGraph Events (Class: QKPT) ID Direct Optional Return Meaning rplt none none none Replot the active plot using the current selection in the data window. rscp none none none Execute the current plot script. selw TEXT none none Select a window by either name or position. ssel TEXT none none Set the selection in the frontmost data window. tscp TEXT none PICT (opt) Execute the text script. wlis TEXT none TEXT Get the name of one or more windows in the list. If a position is not specified, the entire window list will be returned. Note: The Application Signature is QKPT. call This event closes all of the windows, without saving their contents. cfns This event closes the frontmost window, without saving its contents. clos This event closes the specified window, optionally saving its contents. epic This event has several forms and both of the parameters are optional. The syntax for this event is the same as the #PICT/OPT Formula Script command. This command is discussed in Section of the KaleidaGraph manual. If no parameters are supplied, the frontmost plot is returned as a PICT. The direct object is text and sets the scale factor, Postscript PICT, and file parameters. The optional FILE parameter is of typefss or typealias and allows the PICT to be saved to a file. Note: The PICT is returned only if a file is not specified Apple Events
23 Working with AppleScript gsel Sets the selection in the frontmost data window and returns the data contained in it. The selection range is contained in the direct object as white space separated numbers. The syntax for this event is the same as the #COPY Formula Script command. This command is discussed in Section of the KaleidaGraph manual. kdoc Loads the data file described in either the direct object or the FILE object. If the data file is text, it uses the information in the direct object (or the current text file definition) to import the file. The optional FILE object is of typefss or typealias. The syntax for this event is the same as the #DATAFILE Formula Script command. This command is discussed in Section of the KaleidaGraph manual. kgqt This event quits KaleidaGraph as soon as it is possible. ldac Appends one or more columns of data contained in the direct object to the frontmost data window. The data is assumed to be tab-separated, with data in the first row. ldap Appends one or more rows of data contained in the direct object to the frontmost data window. The data is assumed to be tab-separated, with data in the first row. ldat Loads the data contained in the direct object into a new data window. The data is assumed to be tab-separated, with titles in the first row. ldnt Loads the data contained in the direct object into a new data window. The data is assumed to be tab-separated, with data in the first row. lscp Loads the plot script specified in either the direct object or the FILE object. This file should be in the same folder as the last plot script that was opened or specified by a fully qualified path. The optional FILE object is of typefss or typealias. redy Checks to see if KaleidaGraph is running. 1.6 Apple Events 23
24 KaleidaGraph refd Sets the reference directory to be the directory specified in the direct object. The direct object may be of type TEXT, typefss, or typealias. If it is of type TEXT, the object should contain a simple text string describing either a full or partial path to the new directory. The reference directory is used as the base directory for all simple file names and partial paths, except for those describing script files. Script files have their own base directory. This event has no optional parameter. rplt Replots the active plot, using the current selection in the data window. rscp Executes the current plot script. selw Select a window by either name or position. ssel Sets the selection in the frontmost data window. The selection range is contained in the direct object as white space separated numbers. The syntax for this event is the same as the #SELECTION Formula Script command. This command is discussed in Section of the KaleidaGraph manual. tscp Executes the text script contained in the direct object. The commands supported by this event are listed in Section of the KaleidaGraph manual. All of the commands can be used to write a formula script in the Posted Note of the Formula Entry window. wlis Gets the name of one or more windows in the list. If a position is not specified, the entire window list is returned Apple Events
KaleidaGraph Quick Start Guide
KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.
ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700
Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 [email protected] TABLE OF CONTENTS Introduction... 1 Import Excel
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...
Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide
Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
Import Filter Editor User s Guide
Reference Manager Windows Version Import Filter Editor User s Guide April 7, 1999 Research Information Systems COPYRIGHT NOTICE This software product and accompanying documentation is copyrighted and all
Excel Templates. & Quote/Invoice Maker for ACT! Another efficient and affordable ACT! Add-On by V 1.1. http://www.exponenciel.com
Excel Templates & Quote/Invoice Maker for ACT! V 1.1 Another efficient and affordable ACT! Add-On by http://www.exponenciel.com Excel Templates for ACT! User s Manual 2 Table of content Relationship between
How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software
How to transfer your Recipient Address Book from FedEx Ship Manager at fedex.ca to FedEx Ship Manager Software There are three phases to completing the transfer process. Phase I Phase II Phase III Export
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new
Xcode User Default Reference. (Legacy)
Xcode User Default Reference (Legacy) Contents Introduction 5 Organization of This Document 5 Software Version 5 See Also 5 Xcode User Defaults 7 Xcode User Default Overview 7 General User Defaults 8 NSDragAndDropTextDelay
Importing and Exporting With SPSS for Windows 17 TUT 117
Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading
VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0
VISUAL GUIDE to RX Scripting for Roulette Xtreme - System Designer 2.0 UX Software - 2009 TABLE OF CONTENTS INTRODUCTION... ii What is this book about?... iii How to use this book... iii Time to start...
Unleash the Power of e-learning
Unleash the Power of e-learning Version 1.5 November 2011 Edition 2002-2011 Page2 Table of Contents ADMINISTRATOR MENU... 3 USER ACCOUNTS... 4 CREATING USER ACCOUNTS... 4 MODIFYING USER ACCOUNTS... 7 DELETING
Forms Printer User Guide
Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting
Exercise 1: Python Language Basics
Exercise 1: Python Language Basics In this exercise we will cover the basic principles of the Python language. All languages have a standard set of functionality including the ability to comment code,
Title Page. Informed Filler. User s Manual. Shana Corporation 9744-45 Avenue Edmonton, Alberta, Canada T6E 5C5
Title Page Informed Filler User s Manual Shana Corporation 9744-45 Avenue Edmonton, Alberta, Canada T6E 5C5 Telephone: (780) 433-3690 Order Desk: (800) 386-7244 Fax: (780) 437-4381 E-mail: [email protected]
Managing users. Account sources. Chapter 1
Chapter 1 Managing users The Users page in Cloud Manager lists all of the user accounts in the Centrify identity platform. This includes all of the users you create in the Centrify for Mobile user service
Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.
Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.
Dell KACE K1000 System Management Appliance Version 5.4. Service Desk Administrator Guide
Dell KACE K1000 System Management Appliance Version 5.4 Service Desk Administrator Guide October 2012 2004-2012 Dell Inc. All rights reserved. Reproduction of these materials in any manner whatsoever without
Sales Person Commission
Sales Person Commission Table of Contents INTRODUCTION...1 Technical Support...1 Overview...2 GETTING STARTED...3 Adding New Salespersons...3 Commission Rates...7 Viewing a Salesperson's Invoices or Proposals...11
Introduction. This support note provides some information on how MYOB and Excel interact.
How to use MYOB OfficeLink with Excel. Number: 1505 This support note is suitable for: Accounting Accounting Plus Premier Premier Enterprise Introduction With MYOB OfficeLink, you can instantly harness
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
Word 2010: Mail Merge to Email with Attachments
Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms
Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled
The KaleidaGraph Guide to Curve Fitting
The KaleidaGraph Guide to Curve Fitting Contents Chapter 1 Curve Fitting Overview 1.1 Purpose of Curve Fitting... 5 1.2 Types of Curve Fits... 5 Least Squares Curve Fits... 5 Nonlinear Curve Fits... 6
Access Queries (Office 2003)
Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy
Search help. More on Office.com: images templates
Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can
Exporting Client Information
Contents About Exporting Client Information Selecting Layouts Creating/Changing Layouts Removing Layouts Exporting Client Information Exporting Client Information About Exporting Client Information Selected
MICROSOFT ACCESS STEP BY STEP GUIDE
IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the
Moving Data Between Access and Excel
Moving Data Between Access and Excel This document provides basic techniques for exchanging data between Microsoft Access and Excel. Transferring from Excel to Access To bring data into Access from Excel,
The Center for Teaching, Learning, & Technology
The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston
2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together
Crystal Reports Level 2 Computer Training Solutions Course Outline 1. Creating Running Totals Create a Running Total Field Modify a Running Total Field Create a Manual Running Total on Either Detail Data
Web Intelligence User Guide
Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence
How to use MS Excel to regenerate a report from the Report Editor
How to use MS Excel to regenerate a report from the Report Editor Summary This article describes how to create COMPASS reports with Microsoft Excel. When completed, Excel worksheets and/or charts are available
Advanced Excel 10/20/2011 1
Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click
DataPA OpenAnalytics End User Training
DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics
Access Control and Audit Trail Software
Varian, Inc. 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Access Control and Audit Trail Software Operation Manual Varian, Inc. 2002 03-914941-00:3 Table of Contents Introduction... 1 Access Control
EXCEL IMPORT 18.1. user guide
18.1 user guide No Magic, Inc. 2014 All material contained herein is considered proprietary information owned by No Magic, Inc. and is not to be shared, copied, or reproduced by any means. All information
AccXES Account Management Tool Administrator s Guide Version 10.0
AccXES Account Management Tool Administrator s Guide Version 10.0 701P41531 May 2004 Trademark Acknowledgments XEROX, AccXES, The Document Company, and the identifying product names and numbers herein
Desktop, Web and Mobile Testing Tutorials
Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major
NorthClark Computing, Inc. Bill of Material and Parts Master Maintenance. Administrator s Guide
ERP Consulting Web Development Custom Programming Solutions Desktop & Web Applications for Manfact NorthClark Computing, Inc. Bill of Material and Parts Master Maintenance Administrator s Guide Web and
Topography of an Origin Project and Workspace
Origin Basics Topography of an Origin Project and Workspace When you start Origin, a new project opens displaying a worksheet window in the workspace. The worksheet is one type of window available in Origin.
II-3Experiments, Files and Folders
Chapter II-3 II-3Experiments, Files and Folders Experiments... 29 Saving Experiments... 29 Saving as a Packed Experiment File... 29 Saving as an Unpacked Experiment File... 30 Opening Experiments... 32
ICP Data Entry Module Training document. HHC Data Entry Module Training Document
HHC Data Entry Module Training Document Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Scope... 4 2. Step for testing HHC Data Entry Module.. Error! Bookmark not defined. STEP 1 : ICP HHC
Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0
Virtual Integrated Design Getting started with RS232 Hex Com Tool v6.0 Copyright, 1999-2007 Virtual Integrated Design, All rights reserved. 1 Contents: 1. The Main Window. 2. The Port Setup Window. 3.
Excel Reporting with 1010data
Excel Reporting with 1010data (212) 405.1010 [email protected] Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running
MOVES Batch Mode: Setting up and running groups of related MOVES run specifications. EPA Office of Transportation and Air Quality 11/3/2010
MOVES Batch Mode: Setting up and running groups of related MOVES run specifications EPA Office of Transportation and Air Quality 11/3/2010 Webinar Logistics Please use question box to send any questions
Microsoft Access 3: Understanding and Creating Queries
Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA
JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK
MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt
Lesson Notes Author: Pamela Schmidt Tables Text Fields (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers. or the length set by
Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.
Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from
DEPLOYING A VISUAL BASIC.NET APPLICATION
C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment
EMC Documentum Webtop
EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights
Microsoft Access 2010 Overview of Basics
Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create
Introduction to SPSS 16.0
Introduction to SPSS 16.0 Edited by Emily Blumenthal Center for Social Science Computation and Research 110 Savery Hall University of Washington Seattle, WA 98195 USA (206) 543-8110 November 2010 http://julius.csscr.washington.edu/pdf/spss.pdf
Tips and Tricks SAGE ACCPAC INTELLIGENCE
Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,
HELP DESK MANUAL INSTALLATION GUIDE
Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation
Exercise 4 Learning Python language fundamentals
Exercise 4 Learning Python language fundamentals Work with numbers Python can be used as a powerful calculator. Practicing math calculations in Python will help you not only perform these tasks, but also
GFI FAXmaker 14 for Exchange/Lotus/SMTP. Fax-Client Manual. By GFI Software Ltd
GFI FAXmaker 14 for Exchange/Lotus/SMTP Fax-Client Manual By GFI Software Ltd http://www.gfi.com Email: [email protected] Information in this document is subject to change without notice. Companies, names,
Data Warehouse Troubleshooting Tips
Table of Contents "Can't find the Admin layer "... 1 "Can't locate connection document "... 3 Column Headings are Missing after Copy/Paste... 5 Connection Error: ORA-01017: invalid username/password; logon
WS_FTP Professional 12
WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files
CloudCTI Recognition Configuration Tool Manual
CloudCTI Recognition Configuration Tool Manual 2014 v1.0 Contents Recognition Configuration Tool... 2 Welcome to the Recognition Configuration Tool... 2 Getting started... 2 Listed applications... 4 Other
How to Concatenate Cells in Microsoft Access
How to Concatenate Cells in Microsoft Access This tutorial demonstrates how to concatenate cells in Microsoft Access. Sometimes data distributed over multiple columns is more efficient to use when combined
Hypercosm. Studio. www.hypercosm.com
Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks
Q&As: Microsoft Excel 2013: Chapter 2
Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats
Help File. Version 1.1.4.0 February, 2010. MetaDigger for PC
Help File Version 1.1.4.0 February, 2010 MetaDigger for PC How to Use the Sound Ideas MetaDigger for PC Program: The Sound Ideas MetaDigger for PC program will help you find and work with digital sound
Importing Xerox LAN Fax Phonebook Data from Microsoft Outlook
Xerox Multifunction Devices September 4, 2003 for the user Importing Xerox LAN Fax Phonebook Data from Microsoft Outlook Purpose This document provides instructions for importing the Name, Company, Business
ENHANCE. The Style Sheet Tool for Microsoft Dynamics NAV. Microsoft Dynamics NAV 5.0. User s Guide
ENHANCE Microsoft Dynamics NAV 5.0 The Style Sheet Tool for Microsoft Dynamics NAV User s Guide The Style Sheet feature in Microsoft Dynamics TM NAV 5.0 has been enhanced with a new tool that allows you
Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide
Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing
Using Adobe Dreamweaver CS4 (10.0)
Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called
email-lead Grabber Business 2010 User Guide
email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license
Doors User Data File Export/Import
The Doors User Data File Export/Import feature allows a systems integration expert to import selected and limited user information from an external application (such as Excel or some similar spreadsheet
FOR WINDOWS FILE SERVERS
Quest ChangeAuditor FOR WINDOWS FILE SERVERS 5.1 User Guide Copyright Quest Software, Inc. 2010. All rights reserved. This guide contains proprietary information protected by copyright. The software described
Configuring, Customizing, and Troubleshooting Outlook Express
3 Configuring, Customizing, and Troubleshooting Outlook Express............................................... Terms you ll need to understand: Outlook Express Newsgroups Address book Email Preview pane
Scribe Online Integration Services (IS) Tutorial
Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,
Microsoft Dynamics GP. Extender User s Guide
Microsoft Dynamics GP Extender User s Guide Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,
Adobe Dreamweaver CC 14 Tutorial
Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site
1-Step Appraisals Jewelry Appraisal Software
User Guide for 1-Step Appraisals Jewelry Appraisal Software Version 5.02 Page Table of Contents Installing 1-Step Appraisals... Page 3 Getting Started... Page 4 Upgrading from a Previous Version... Page
SerialMailer Manual. For SerialMailer 7.2. Copyright 2010-2011 Falko Axmann. All rights reserved.
1 SerialMailer Manual For SerialMailer 7.2 Copyright 2010-2011 Falko Axmann. All rights reserved. 2 Contents 1 Getting Started 4 1.1 Configuring SerialMailer 4 1.2 Your First Serial Mail 7 1.2.1 Database
SnapLogic Tutorials Document Release: October 2013 SnapLogic, Inc. 2 West 5th Ave, Fourth Floor San Mateo, California 94402 U.S.A. www.snaplogic.
Document Release: October 2013 SnapLogic, Inc. 2 West 5th Ave, Fourth Floor San Mateo, California 94402 U.S.A. www.snaplogic.com Table of Contents SnapLogic Tutorials 1 Table of Contents 2 SnapLogic Overview
Business Insight Report Authoring Getting Started Guide
Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,
FileMaker Pro and Microsoft Office Integration
FileMaker Pro and Microsoft Office Integration page Table of Contents Executive Summary...3 Introduction...3 Top Reasons to Read This Guide...3 Before You Get Started...4 Downloading the FileMaker Trial
Upgrading MySQL from 32-bit to 64-bit
Upgrading MySQL from 32-bit to 64-bit UPGRADING MYSQL FROM 32-BIT TO 64-BIT... 1 Overview... 1 Upgrading MySQL from 32-bit to 64-bit... 1 Document Revision History... 21 Overview This document will walk
Appendix A How to create a data-sharing lab
Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
Acrobat 9: Forms. 56 Pages. Acrobat 9: Forms v2.0.0. Windows
Acrobat 9: Forms Windows Acrobat 9: Forms v2.0.0 2009 56 Pages About IT Training & Education The University Information Technology Services (UITS) IT Training & Education program at Indiana University
The LSUHSC N.O. Email Archive
The LSUHSC N.O. Email Archive Introduction The LSUHSC N.O. email archive permanently retains a copy of all email items sent and received by LSUHSC N.O. Academic email users. Email items will be accessible
Application Notes for Configuring MUG Enterprise Interceptor with Avaya Proactive Contact - Issue 1.0
Avaya Solution & Interoperability Test Lab Application Notes for Configuring MUG Enterprise Interceptor with Avaya Proactive Contact - Issue 1.0 Abstract These Application Notes describe the procedures
How to configure the DBxtra Report Web Service on IIS (Internet Information Server)
How to configure the DBxtra Report Web Service on IIS (Internet Information Server) Table of Contents Install the DBxtra Report Web Service automatically... 2 Access the Report Web Service... 4 Verify
Jet Data Manager 2012 User Guide
Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform
Microsoft Office. Mail Merge in Microsoft Word
Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup
Abila Grant Management. Document Management
Abila Grant Management This is a publication of Abila, Inc. Version 2014 2014 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service names
Document Management Getting Started Guide
Document Management Getting Started Guide Version: 6.6.x Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software, Inc. All other
Notepad++ The COMPSCI 101 Text Editor for Windows. What is a text editor? Install Python 3
Notepad++ The COMPSCI 101 Text Editor for Windows The text editor that we will be using in the Computer Science labs for creating our Python programs is called Notepad++ and http://notepad-plus-plus.org
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
PL / SQL Basics. Chapter 3
PL / SQL Basics Chapter 3 PL / SQL Basics PL / SQL block Lexical units Variable declarations PL / SQL types Expressions and operators PL / SQL control structures PL / SQL style guide 2 PL / SQL Block Basic
Exporting Contact Information
Contents About Exporting Contact Information Selecting Layouts Creating/Changing Layouts Removing Layouts Exporting Contact Information Exporting Contact Information About Exporting Contact Information
EndNote Cite While You Write FAQs
IOE Library Guide EndNote Cite While You Write FAQs We have compiled a list of the more frequently asked questions and answers about citing your references in Word and working with EndNote libraries (desktop
ProDoc Tech Tip Creating and Using Supplemental Forms
ProDoc Tech Tip You can add your own forms and letters into ProDoc. If you want, you can even automate them to merge data into pre-selected fields. Follow the steps below to create a simple, representative
