AMT Help Files

Custom Printing

In AMT web clients a configurable printing option is available with the keyboard shortcut Alt+p.
This will open a printing window from your browser similar to the default printing window which is usually bound to the Ctrl+p shortcut.

To configure the custom printing feature, settings can be changed in the amt.css file of the application located in the folder Client\App_Themes\Application Default\ of your application. Open the amt.css file in a text editor and search for the '@media print' section:

@media print
{
#AmtBody * { visibility: hidden; overflow:visible }
#PageDiv * { visibility: visible; }
#AppTitleBar * { visibility: hidden; }
#AppStatusBarWrapper * { visibility: hidden; }
#AppStatusBar * { visibility: hidden; }
#theform * { visibility: visible; }
#AppBodyContent * { visibility: visible; }
...
}

How the printed page will look can be set using the CSS language.

 

The Alt+p shortcut invokes the same feature which was previously only accessible via the Print Form Button.