rfresh Well-Known Member Licensed User Longtime User Jan 30, 2019 #1 How can I get the PlayBeep sub below to play if the app is in the background? Thank you... B4X: Sub PlayBeep Dim NativeMe As NativeObject = Me NativeMe.RunMethod("beep", Null) End Sub
How can I get the PlayBeep sub below to play if the app is in the background? Thank you... B4X: Sub PlayBeep Dim NativeMe As NativeObject = Me NativeMe.RunMethod("beep", Null) End Sub
Erel B4X founder Staff member Licensed User Longtime User Jan 30, 2019 #2 How are you running anything in the background? What causes your app to start in the background? Upvote 0
rfresh Well-Known Member Licensed User Longtime User Jan 30, 2019 #3 I start my app and then have start up another app and work with it. I'd like to still have my first app be able make the beep sound while not the focused app. Upvote 0
I start my app and then have start up another app and work with it. I'd like to still have my first app be able make the beep sound while not the focused app.
Erel B4X founder Staff member Licensed User Longtime User Jan 30, 2019 #4 Your program doesn't continue to run in the background. You can schedule a local notification. Upvote 0