Shay Well-Known Member Licensed User Longtime User Sep 16, 2011 #1 Conside this: SP.Play(LoadId1, 1,1,3,0,2) StartActivity(PhoneCall.Call(PhoneNumber)) this sould play sound before dialing if running as above the sound is been cut / volume reduced after ~1 sec (I guess it is phone feature that stop sound while makine phone call) <since if I remove second code line, sound is ok> how can i overcome this?
Conside this: SP.Play(LoadId1, 1,1,3,0,2) StartActivity(PhoneCall.Call(PhoneNumber)) this sould play sound before dialing if running as above the sound is been cut / volume reduced after ~1 sec (I guess it is phone feature that stop sound while makine phone call) <since if I remove second code line, sound is ok> how can i overcome this?
Shay Well-Known Member Licensed User Longtime User Sep 17, 2011 #2 how can I start activity after sound is done? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Sep 18, 2011 #3 SP.Play doesn't block the program from executing. You can use a timer to start the activity after a specific time. Upvote 0
SP.Play doesn't block the program from executing. You can use a timer to start the activity after a specific time.