Android Code Snippet Intent make a Skype Video call

With this intent you can make a skype Video Call in direct mode with user:

B4X:
Dim skypeId As String = "devil-app"
Dim collegati As String = "skype:" & skypeId & "?call&video=true"
Dim skype As Intent
skype.Initialize(skype.ACTION_VIEW, collegati)
skype.SetComponent("com.skype.raider")
StartActivity(skype)
 

LucaMs

Expert
Licensed User
Longtime User
Marco, hai scritto 3 intent per Skype; forse dovresti riunirli in un unico thread.

Tra l'altro, mi SEMBRA di ricordare che ci sia anche un thread proprio per gli intent, da qualche parte.

Grazie, comunque ;)



You wrote 3 intents for Skpype; perhaps you should group them in a singole thread.
Also, it seems to me that an "intents thread" exists, somewhere on site.

Thank you.
 

MarcoRome

Expert
Licensed User
Longtime User
Marco, hai scritto 3 intent per Skype; forse dovresti riunirli in un unico thread.

Tra l'altro, mi SEMBRA di ricordare che ci sia anche un thread proprio per gli intent, da qualche parte.

Grazie, comunque ;)



You wrote 3 intents for Skpype; perhaps you should group them in a singole thread.
Also, it seems to me that an "intents thread" exists, somewhere on site.

Thank you.
Forse hai ragione... vabbè per il momento lascio perdere ( altrimenti ne scrivo un altro ).
Relativamente agli intent sul sito c'è un mucchio di roba, ma non mi sembra di aver visto nulla di specifico su questa chiamate.

Maybe youre right .... anyway for this once i give up (otherwise i Write another thread).
With regard to intent on the site there is a bunch of stuff, but i don't think i saw anything specific on this call.
 

LucaMs

Expert
Licensed User
Longtime User
No, non intendo intent specifici per Skype, mi sembra che ci sia un thread che raccolga vari tipi di intent (meglio che io cerchi e poi aggiorni questo post :))

https://www.b4x.com/android/forum/t...android-intents-to-do-stuff.9823/#post-179560

Non so se sia l'unico ma sarebbe il caso, forse, di farne uno unico.

..........

No, I was not referring to specific intents for Skype, I think there is a thread which contains many kind on intents.

If the one I linked is not the only one, I think it would be a good idea to create a single thread for intents.
 

MarcoRome

Expert
Licensed User
Longtime User
No, non intendo intent specifici per Skype, mi sembra che ci sia un thread che raccolga vari tipi di intent (meglio che io cerchi e poi aggiorni questo post :))

https://www.b4x.com/android/forum/t...android-intents-to-do-stuff.9823/#post-179560

Non so se sia l'unico ma sarebbe il caso, forse, di farne uno unico.

..........

No, I was not referring to specific intents for Skype, I think there is a thread which contains many kind on intents.

If the one I linked is not the only one, I think it would be a good idea to create a single thread for intents.


Si, ho provato ad aggiungere lo stesso come da te suggerito ma ricevo il seguente messaggio:

Yes you are right, but when i try add this intent into thread as your suggested i have this message:
This thread is too old to reply to.
 

pazzokli

Active Member
Licensed User
Longtime User
With this intent you can make a skype Video Call in direct mode with user:

B4X:
Dim skypeId As String = "devil-app"
Dim collegati As String = "skype:" & skypeId & "?call&video=true"
Dim skype As Intent
skype.Initialize(skype.ACTION_VIEW, collegati)
skype.SetComponent("com.skype.raider")
StartActivity(skype)
Non funziona su un vecchio S4. Funziona solo call senza video ma non apre la camera
 

MarcoRome

Expert
Licensed User
Longtime User
Non funziona su un vecchio S4. Funziona solo call senza video ma non apre la camera

1. Did you enter the permissions to manage the camera in the manifest file?
2. You must always attach the error that comes back to you, if you want more help.
3. In this section you need to write in English.
 
Top