Table of Contents

IsTablet

(Information and examples taken from the DroidScript documentation)

Description

The IsTablet method returns true if the app is running on a Tablet and false if not.

 app.IsTablet();

Example

function OnStart()
{
  tablet = app.IsTablet();
  app.ShowPopup( tablet );
}