<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic MS TEAM Button  on Cisco touch JION BY Dial in Collaboration Applications</title>
    <link>https://community.cisco.com/t5/collaboration-applications/ms-team-button-on-cisco-touch-jion-by-dial/m-p/4743710#M48583</link>
    <description>&lt;P&gt;dear Any Please share the Scrip for Macro to add the team button&amp;nbsp;&lt;/P&gt;&lt;P&gt;and join team calls from touch by dialling the team ID&amp;nbsp;&lt;/P&gt;&lt;P&gt;one Demo Attached for Refence&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Dec 2022 05:50:04 GMT</pubDate>
    <dc:creator>Kabeern74</dc:creator>
    <dc:date>2022-12-22T05:50:04Z</dc:date>
    <item>
      <title>MS TEAM Button  on Cisco touch JION BY Dial</title>
      <link>https://community.cisco.com/t5/collaboration-applications/ms-team-button-on-cisco-touch-jion-by-dial/m-p/4743710#M48583</link>
      <description>&lt;P&gt;dear Any Please share the Scrip for Macro to add the team button&amp;nbsp;&lt;/P&gt;&lt;P&gt;and join team calls from touch by dialling the team ID&amp;nbsp;&lt;/P&gt;&lt;P&gt;one Demo Attached for Refence&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 05:50:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/collaboration-applications/ms-team-button-on-cisco-touch-jion-by-dial/m-p/4743710#M48583</guid>
      <dc:creator>Kabeern74</dc:creator>
      <dc:date>2022-12-22T05:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: MS TEAM Button  on Cisco touch JION BY Dial</title>
      <link>https://community.cisco.com/t5/collaboration-applications/ms-team-button-on-cisco-touch-jion-by-dial/m-p/4743847#M48584</link>
      <description>&lt;P&gt;Here is the js code for a macro that works with CVI and the icon file we use on our systems.&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;const xapi = require('xapi');
const domain = ".&amp;lt;company domain&amp;gt;@m.webex.com";

function onGuiTeams(event) {
  if (event.PanelId == 'teams_start') {
    xapi.command('UserInterface Message TextInput Display', {
		FeedbackId: 'teamsStart',
		InputType: 'Numeric',
		Text: 'Join the &amp;lt;Company Name&amp;gt; Teams meeting by typing the meeting ID or the full meeting invite.',
		Placeholder: 'Meeting ID or full meeting invite',
		SubmitText: 'Join',
		Title: 'Join a &amp;lt;Company Name&amp;gt; Microsoft Teams Meeting',
		Duration: 30,
	});
  }
}

function TeamsMeeting(event) {
  if (event.FeedbackId == 'teamsStart') {
    if (event.Text.search("@m.webex.com") == -1) {
		xapi.command('Dial', {
			Number: event.Text + domain,
		});
    }
    else {
		xapi.command('Dial', {
			Number: event.Text,
		}); 
    }
  }
}

xapi.event.on('UserInterface Extensions Panel Clicked', onGuiTeams);
xapi.event.on('UserInterface Message TextInput Response', TeamsMeeting);
&lt;/LI-CODE&gt;
&lt;P&gt;Do note that this will not work for connecting to a meeting that uses WebRTC, that is the standard for MS Teams. It works for SIP calls where a CVI is used.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 10:34:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/collaboration-applications/ms-team-button-on-cisco-touch-jion-by-dial/m-p/4743847#M48584</guid>
      <dc:creator>Roger Kallberg</dc:creator>
      <dc:date>2022-12-22T10:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: MS TEAM Button  on Cisco touch JION BY Dial</title>
      <link>https://community.cisco.com/t5/collaboration-applications/ms-team-button-on-cisco-touch-jion-by-dial/m-p/4744798#M48587</link>
      <description>&lt;P&gt;Cisco has published an example&amp;nbsp;&lt;A href="https://roomos.cisco.com/macros/Join%203rd%20Party%20Meeting" target="_blank" rel="noopener"&gt;Join 3rd-Party Meeting UI&lt;/A&gt;&amp;nbsp;but be forewarned that it only works where the MSFT Teams Meeting host has paid for a CVI provider so there is a SIP URI. Support for WebRTC joins isn’t available yet, supposedly because MSFT universal meeting IDs are not yet supported via a browser join.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Dec 2022 13:31:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/collaboration-applications/ms-team-button-on-cisco-touch-jion-by-dial/m-p/4744798#M48587</guid>
      <dc:creator>Jonathan Schulenberg</dc:creator>
      <dc:date>2022-12-24T13:31:50Z</dc:date>
    </item>
  </channel>
</rss>

