Is there a way to make a message notification full screen?

Solved
M
Mitchell
schusterco

I am trying to make an alert that fills the whole screen for 10 seconds with a sound and colored background. 

Is there a way to do this? Currently I am sending a Message with an alert tone, but I would like it to be more noticeable. 

This is for Samsung Tablets

2 years ago
SOTI MobiControl
ANSWERS
ZC
Zafer Cigdem
2 years ago

Hi Mitchell,

You may use a video for this. You can create a 10 seconds video that show which message you want on the video and before executing the video you can ring a sound based on your volume preference (please see how to set sound and time of the sound as below). You can send out 2 legacy script in one send script command as below. Please remember to update intent's video path and component name based on your video player on your device, I do underline these sections on below as well. I hope it helps, here you can see more details below. Thank you


Legacy Script to send out:

 

ring_device 90 10 1

 

sendintent -a "intent:file:///sdcard/Download/Video.mp4#Intent;type=mp4;component=com.samsung.android.video/.player.activity.MoviePlayer;end"

 


Details: 

Script Commands for Android Enterprise: Managed Devices (soti.net)

 

ring_device [volume] [time] [isVibrate]

volume sets the volume the device rings at. It must be a value between 25-100.

time sets the length of time the device rings for.

isVibrate toggles whether the device vibrates as well. Accepted values:
  • 0 - No vibration
  • 1 - Vibrate

The sendintent Command (soti.net)

Zafer

Solution
M
Mitchell
2 years ago

This worked great. Thank you