I am trying to set the volume using the code below to max in an alarm however the "mp.SetVolume(1,1)" line does not work (does not change the volume to max)
I added the same code to the "SimpleAlarm" that SuSu wrote and it doesn't work there either.
I've attached a zip of SuSu's "SimpleAlarm" with the additional SetVolume line (to show the complete code)/
What am I doing wrong?
I added the same code to the "SimpleAlarm" that SuSu wrote and it doesn't work there either.
I've attached a zip of SuSu's "SimpleAlarm" with the additional SetVolume line (to show the complete code)/
What am I doing wrong?
B4X:
Sub PlayAlarm
mp.Load(File.DirAssets, "sound.wav")
mp.SetVolume(1,1)
mp.Play
End Sub