You want to perform an operation when the message is shown without opening the screen that would cause user disruption, is this what you are talking about?
And while doing that operation you would also decide the next time to set for the Alarm, am I right?
I'm still working on some functionality to combine the alarmmanager extension together with itoo... as soon as I got something running I will let you know
Show on top notification check is not working.. I need the app to run daily to do some house keeping and provide relevant notifications. However, even after setting the permission it keeps testing as false even when the permission is infact set. I must be sure this permission is set or the whole program fails my purpose..
Is there a definite way to check to be sure the permission is set?
This block is put in initialize screen and always pops up the message..
well, if the user never enables appear on top settings, then method HasAppearOnTopPermission always will return false
how did you set the blocks in the AfterChoosing event? If you take a look at my example project "Alarm Manager with Autostart Test" you will see these blocks
In the following dialog screen the user has to explicitely choose the app to enable appear on top settings, see also the documentation at App Inventor Extensions: Alarm Manager | Pura Vida Apps. Here are the relevant screenshots
Also rather than only use an if statement to ask for that permission, use an if then else statement to continue with your logic in the else part only if the permission is available as shown in the example project.
I need some help with the Taifun Alarm Manager extension. I was wondering if anyone could help me combine the autostart function and the custom alarm settings function. I would like to create an alarm that could be set for certain times and also autostart.
no
if the user enabled appear on top settings, then obviously method HasAppearOnTopPermission will return true
unfortunately you forgot to provide a screenshot of your relevant blocks...
why don't you follow the provided example?
see the relevant part in the screenshot below
It appears that by adding the set taifunalarmmanager.autostart to true first before calling the .hasAppearOnTopPermission did the trick. It now behaves as expected.
I want to always send a notification or autostart. Both notification and autostart together would be the best. Also, what do I put in that empty socket?
Notifications appear in the notifications bar and have nothing to do with the appear on top permission. You need that permission only, if you want to autostart your app at a given time.
See also the documentation: while the user is using another app, at a given time your app will get priority and will appear on top of the other currently running app.