1.
Select Help > Sample Data Library and open Quality Control/Steam Turbine Historical.jmp.
3.
Select File > New > Application.
4.
Select Blank Application.
7.
Select Edit > Select All.
8.
Select Format > Add Container > H List Box to align the reports horizontally.
9.
Select each report and type yvar next to Y Variable in the Objects pane.
11.
Select the Fuel, Steam Flow, Steam Temp, and MW variables and then click the Y button.
12.
Multivariate Application
Tip: The absolute path to the data table is inserted automatically in the application’s Table property. If the data is sample data, the $SAMPLE_DATA path variable is automatically used in the path. You can also enter an absolute or relative path. Remember that the user must have access to this path.
3.
Select Run Application from the Application Builder red triangle menu.
Example of Filtered Content
3.
Select Date from the list and then select m/d/y.
6.
Select Run Application from the Application Builder red triangle menu.
Example of a Date Selector
The Launcher with Report sample application combines a platform launch window with the resulting report. The sample application is displayed when you select File > New > Application.
1.
Select File > New > Application and click the Launcher with Report sample.
You will copy and paste JSL from this sample into your copy. Notice that the Iris.jmp sample data table opens when you open the application.
2.
Select File > New > Application and click Blank Application.
Customizing the Application
3.
Click the Scripts tab and select Radviz from the Namespace list.
dt = Current Data Table();
Customizing the LaunchModule
7.
Click the LaunchModule tab and drag a V List Box (under Containers) onto the workspace.
Adding the H List Box
11.
Because you have made many changes, select File > Save and rename the file. Make sure that .jmpappsource is selected as the file type.
5.
Select DataTable1 in the Objects pane.
The current data table, Iris.jmp, appears in the Path box.
Adding the Panel Box
Adding the Col List Box
Adding a Panel Box
Adding a Cancel Button
11.
12.
Select File > Save to save your changes in the.jmpappsource file.
6.
Select File > Save to save your changes in the.jmpappsource file.
11.
Select File > Save to save your changes in the.jmpappsource file.
6.
Select File > Save to save your changes in the.jmpappsource file.
Iris.jmp Graph
3.
On Windows, select File > Save As, select JMP Application File from the Save as type list, and then click Save.
On Macintosh, select File > Export, select JMP Application, and click Next to save the application.
4.
Distribute the .jmpapp file to users. This file cannot be modified.
5.
Save the .jmpappsource file so you can edit the application and resave it as a JMP application.
Adding a Script Interactively
Button5Press=Function({this},
	// This function is called when the button is pressed
	name = this << Get Button Name;
);
SetY = Function({},
	// This function will be called when the Y button is
	// pressed
 
	items = ColumnList << Get Selected;
	YList << Append(items);
);
Get Selected is passed to the ColumnList because you gave the Col List Box this variable name (ColumnList) in the object properties. Get Selected returns a list of the selected columns. Append(items) appends the selected columns to YList, the variable assigned to the Col List Box in the Cast Selected Columns into Roles window.

Help created on 9/19/2017