Page 1 of 1

How to add additional numbers to a call

Posted: 16 Mar 2020 09:01
by viorel.rusu
Hi,
I have this situation:
I want to call a number and, after the call is started I want to input additional numbers Ex.: call +1233546546 -> sleep(3s) -> after a while to input 123456# -> sleep(3s) -> input 987654654#
I tried with Control UI, sometimes it's working, sometimes not (Huawei P20 Pro, all permissions granted). I want an alternative if there exists...
I hope I was clear.
Thank you

Re: How to add additional numbers to a call

Posted: 18 Mar 2020 18:40
by Micky Micky
Hi

I think that what you're trying to do is send DTMF tones.

I'm surprised that there's no preset in AM for this as it's an age-old thing in telephony.

It seems possible via an intent, but how to do that is beyond me.

Hope this points you the right direction.

Micky

Re: How to add additional numbers to a call

Posted: 19 Mar 2020 01:04
by Rafi4
Hi @viorel.rusu
I think that are you trying to make conference call? Or are you paste any text?

From record4

Re: How to add additional numbers to a call

Posted: 19 Mar 2020 05:46
by viorel.rusu
Yes, I'm trying to make a conference call.
I didn't try to paste numbers (I don't know if will work, how can I paste numbers?)

Re: How to add additional numbers to a call

Posted: 19 Mar 2020 09:22
by BoBo
Based on MickyMicky's suggestion ... :idea: :?:
Action > Sound > File
http://www.mediacollege.com/audio/tone/files/dtmf.zip

Re: How to add additional numbers to a call

Posted: 19 Mar 2020 10:40
by viorel.rusu
BoBo wrote:
19 Mar 2020 09:22
MickyMicky's suggestion might work fine ... :idea: :?:
Action > Sound > File
http://www.mediacollege.com/audio/tone/files/dtmf.zip
This doesn't work.

Re: How to add additional numbers to a call

Posted: 19 Mar 2020 14:13
by Rafi4
Hi
Use action control ui to click on specific id . (Use control ui Info action to get id)
To paste any thing before use action copy text to clipboard and then use control ui action script as below

Code: Select all

Sleep(2000);paste()
From record4