An overlay definition contains an alternative softkey and screen setup that can be called from the main definition by a load_overlay statement.
The syntax of an overlay definition is:
overlay overlay_ref
{
statement 1;
...
statement n;
}
where:
For more information, see overlay.
The following is an example of an FDM overlay statement:
overlay Fred
{
install_softkey fred;
clear display;
display "$message";
}
In this example, the softkey definition named fred is installed on a softkey, the display is cleared, and the value of the parameter called message is shown on the first line of the display. The parameter message must be passed to the ADSI state table. The parameter name must be included in the main definition that includes this overlay definition.