User Guide
Maple Document
To launch a Maplet application for which the Maple code is contained in a
Maple document, you need to execute the Maplet code. To display the Maplet
application, you must use the Maplets[Display] command. Note: The Maplet
code may be quite large if the Maplet application is complex. In this case,
execute the document to ensure user-defined procedures that are referenced
in the Maplet application are also defined.
Typical procedure:
1. If present, evaluate user-defined procedures.
Myproc:=proc...
2. Load the Maplets[Elements] package.
with( Maplets[Elements] );
3. Evaluate the Maplet definition.
Maplet_name:=Maplet( Maplet_definition );
4. Display the Maplet application.
Maplets[Display]( Maplet_name );
Important: When a Maplet application is running, you cannot interact with
the Maple document.
9.4 Authoring Maplets
When authoring Maplets, you can use the Maplet Builder (GUI-based) or
the Maplets package (syntax-based). The Maplet Builder allows you to
drag and drop buttons, sliders, text regions, and other elements to define the
Maplet application and set the element properties to perform an action upon
selection or update of the element. The Maplet Builder is designed to create
9.4 Authoring Maplets • 345