How is it possible to get the status of other users in a conference call (assuming I'm the host) as call.status only seems to return the status of the first user? I'm using VB Script if that's relevant.
If you are the host, you will have an individual ICall Interface Reference for each call in that conference, which means each call will have a call.Id as well as a call.status. So, if you are using the CallStatus Event handler you will see an event for any call that changes status.
Call.ConferenceId for the calls in the conference call will have the same value when you query skype.ActiveCalls a well, More Here:
https://developer.skype.com/Docs/Skype4COML...ype#ActiveCallsYou can also use skype.Conferences as well:
https://developer.skype.com/Docs/Skype4COML...ype#ConferencesOne Example from the .VBS Examples:
https://developer.skype.com/Docs/Skype4COML...Conferences_vbsFrom:
https://developer.skype.com/Docs/Skype4COMLib/Examples