Skype in business: Delete the contact in new tab from the other side after add contact\sending notification - skype-for-business

I have added someone on the contact list incorrectly on Skype Business Office, now I want to erase the notification effect that goes for him and puts me on his new list. His removal from my contact is no use.how to remove my contate in remote\other side "new tab" Skype Business ?

Related

Outlook Web Add-in: Can we add an entry into context menu?

I didn't find this functionality in Outlook web add-in documentation. But it's worth to ask...
We want to add a new entry into Outlook right click menu (context menu), so that it can open a hyperlink (url is different based on what you highlighted) to integrate with our web portal.
I understand contextual outlook add-in is the closer solution.
But it's not the user experience we want.
Instead of highlight everything based on RegEx, we would like to support users to intentionally trigger the add-in by highlighted keyword and right click on the context menu.
Wondering if it's possible today for the latest Outlook desktop app.
User scenario:
User highlights a keyword in email reading/writing mode
User right click the mouse
The context menu shows up with having our custom menu item
When user clicks on our custom menu item, it opens a browser with an url based on what user highlighted.
Outlook context menu cannot be extended at the moment. Available extension points are:
MessageReadCommandSurface
MessageComposeCommandSurface
AppointmentOrganizerCommandSurface
AppointmentAttendeeCommandSurface
Module (Can only be used in the DesktopFormFactor.)
MobileMessageReadCommandSurface
Events
DetectedEntity
You probably should add your business case into Office development user voice request: Outlook Web Add-in: Add Context Menu Mail Item Extension Point or at least upvote it.

Modify menus shown to Portal users Odoo/Openerp

What I want to do is this:
When a new user is given access to the Portal, I want her only to be able to see a single Sales menu with a submenu Sales/Customers and nothing else.
I was able to do that by adding the menu to the Portal group, but I need to hide the other menus (Website,Mail,Projects). I removed all the other views from Portal group and made sure that my customer does not belong to any other group than Portal but the menus are still there.
From what I can understand the menus are shown only to certain groups of users. My user only belongs to the Portal group these menus are not referenced there. I only have my Sales/Customer there
How can I remove them?
Out-of-box odoo is designed to show all those menu as portal menu, so what you want todo here is create new group with portal check-box true and assigned all menu you wnat him to see and assign needed security. Designing this group be bit lazy as you will have todo lot of trails.
Bests

How do I get checked-in users in Eventbrite API?

I'm starting a developing a custom control panel for Eventbrite
I need to get a list of all users that checked in through their "At the door" App to get a list of only people IN the event to filter people that registered but didn't assist.
I tried event_list_attendees but I see no parameter stating the user status and the get_event method says nothing about attended.
I already tried searching but I found nothing about it so I find it a little weird so if this is a known issue covered someone else, isn't possible or whatever I missed... please point me in the right direction
Thanks
Right now, no "At The Door" information is available through the Eventbrite API.
It's also not possible to use the API to obtain a list of attendees who were checked in by the Eventbrite "Entry Manager" app, but you can get this information through the Eventbrite UI. Here's how:
Log into your Account
Click 'My Events' at the top of the page
Click the 'Completed' tab
Click 'Manage' to the right of the event name
Find the box on the left titled 'Analyze' and click the 'Event Reports' link
Change the Report Type drop down menu to 'Event Attendance vs No Shows'
Use the Check In Status drop down menu to choose 'Checked In' or 'No Shows'
Now you have your list of people who were checked in or did not attend. You can export this list to Excel by clicking the green File Type button
You can verify check in status via event_list_attendees, you just need to include only_display=barcodes, etc... to your request params, you can find the status # /attendees/attendee/barcodes/barcode/status in the response with values used or unused meaning if it has the status of used the ticket has been checked in and so on...

Compose a new message in the mail app by a clicking a button

I'm working on a Mac app and I want the user to be able to contact me via email. So I was thinking that there was going to be a button that says contact or something and when the user click on the button it will open the mail app and compose a new message that will be sent to my email address already added.
So kinda like an in app mail function that you can add on the iPhone and iPad apps.
Is this possible?
Using NSWorkspace's -openURL: method you can open a standard mailto: link which can include subject and body and it will launch user's default e-mail app (usually Mail) with pre-populated fields.
mailto:you#domain.com?subject=hello&body=text

Pop up Alerts in moss 2010 Intranet site

I need to create alerts to group/all employees in my site.To my site home page basing on the data pushed into "custome list" by administrator in moss 2010 intranet site.So can any one suggest steps to acheive this.Hoping quick replys...
Create a simple workflow using SharePoint designer and send out alerts/notification emails to the users in the group when something happens in your list (like a costume worth more than 100 bucks is entered etc..). You can trigger this notifications workflow in many scenarios.
See this link.
Check out this video on how to create workflows using designer.
Having said that, if you need a pop-up or a message box to appear when a user visits the site (and ofcourse when something changed on your list) then you have to write code in the load event of the page/any web part on the page to display popup. SharePoint 2010 has Javascript API which makes it easy for you to display pop-up or you can do this totally in the code.