===== IsBluetoothOn ===== //(Information and examples taken from the DroidScript documentation)// ==== Description ==== The **IsBluetoothOn** method returns true if Bluetooth is enabled and false if not. app.IsBluetoothOn();---- ==== Example ==== function OnStart() { btOn = app.IsBluetoothOn(); app.ShowPopup( btOn ); }