I have an app that keeps track of requests entered. The people who are responsible for the requests want a sound to play when a record is created. The users are loading this PowerApp on their PC either by using the web browser or using the Windows Power App application from the Microsoft Store.
I have the sound notification accomplished by using a 3 second auto looping timer:
On App Start: Count Items In Datasource and store in CountVariableA
On Start: Refresh Datasource
On End: Count Items In DataSource and store in CountVariableB. If CountVariableB is greater than CountVariableA then play an audio control and set CountVariableA to CountVariableB's value.
The issue I am running into is that the sound doesn't seem to run when the app is minimized. I'm not sure if the app is being suspended while in the background of it it is something else. Is there a way to force all the timers and data refreshes to keep running in Windows even if the app is minimized?