Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
83 views

As Microsoft is rolling out Unified manifest for Teams app and outlook add-in. Will there be a single Azure AD app required for both or both Teams app & outlook add-in can have their separate ...
user24195219's user avatar
0 votes
0 answers
44 views

I am trying to use OfficeJS in Excel Online to add a timestamp when a row is changed (specifically column A) to Column D on the same row. I've been trying to modify the Scripts Lab example, below, but ...
Phillip Ott's user avatar
0 votes
0 answers
84 views

I'm new to Office Add-ins and I'm trying to realize the following behavior on MS Word with Office Word addin, but I could not find any way to realize it. if a user changes checkbox status on task ...
a penguinwatcher's user avatar
0 votes
0 answers
103 views

I'm working on an Excel addin that has a free set of basic features and an advanced set that can be purchased by subscription. I see that I can do that using the Commercial Marketplace with a SaaS ...
S Bullen's user avatar
0 votes
1 answer
395 views

The following is a snippet of the code I'm trying to run: Excel.run(function (context) { const startTerm = context.workbook.names.getItem("StartTerm").getRange(); startTerm.load(); ...
rbxyz's user avatar
  • 1
0 votes
1 answer
39 views

using node v20.12.0 "react": "^18.2.0" I have create react application using yo man generator for office version 5.0.0. file code is like: async function getExcelOOXML() { try {...
vidur punj's user avatar
  • 6,019
1 vote
0 answers
40 views

I am looking for a way to programmatically using javascript/office.js close the mail/reply item when there is an inline reply. ( the .close() method works if the Outlook reply is popped out. ) Our add-...
Andy Moz's user avatar
1 vote
0 answers
31 views

I'm encountering an issue with the insertSlidesFromBase64 method in PowerPoint. When I insert slides using this method, the embedded fonts in the slides are not being carried over. Specifically, I'm ...
Jamshidkhuja Burikhujaev's user avatar
0 votes
0 answers
59 views

Is it possible in VBA or VSTO to add left/right margins to an inline image? I'm currently using space characters to create horizontal gap between two side-by-side inline pictures, but it is not ...
dotNET's user avatar
  • 35.7k
0 votes
1 answer
56 views

My addin has a create new email function that would call displayNewMessageFormAsync(). I would like my event-based addin to access some data object originating from the caller (taskpane) in the new ...
John Evans Solachuk's user avatar
0 votes
0 answers
44 views

I'm writing an OfficeJs addin for Excel that provides an additional Copy action for cells. Ideally, I'd like to add a custom menu for it on the Home > Clipboard > Copy dropdown, below "Copy&...
S Bullen's user avatar
0 votes
1 answer
435 views

Writing an Outlook Add-In and trying to get the recipients from message compose mode using the Office Javascript API. I can see successful results in the console logs but I only get undefined as a ...
Amy's user avatar
  • 197
0 votes
1 answer
210 views

I am the newer of office web addin, i create my first office web addin by using "Excel Web Add-in" template which is on visual studio 2022 and the i follow the manifest file summary tutial ...
SKYC's user avatar
  • 33
1 vote
0 answers
50 views

manifast.xml <WebApplicationInfo> <Id>xxxxxx-xxxx-xxxx-xxxx</Id> <Resource>api://localhost:4200/xxxxxx-xxxx-xxxx-xxxx</Resource> <Scopes> &...
Rahul Prajapati's user avatar
0 votes
0 answers
75 views

The following code produces an error in linting, while still working correctly: function getSelectionOoxml(): Promise<string> { return new Promise((resolve) => { return Word.run(async (...
dotNET's user avatar
  • 35.7k
2 votes
1 answer
63 views

I can't find any reference on how to connect 2 shapes in PowerPoint using their JS API for Office Add-in (using latest version as of 03.2024). Here is my simple code: export async function run() { ...
user715022's user avatar
2 votes
0 answers
163 views

I'm currently in the process of migrating functionality within excel from VBA event handlers, notably the use of worksheet change handlers, to OfficeJS and I'm having some odd performance issues which ...
archetypo's user avatar
0 votes
0 answers
193 views

Is there a way to export a style to JSON? I see there is importStylesFromJson, but nothing for exporting styles. Alternately, where can I find the full description of the JSON format supported by ...
dotNET's user avatar
  • 35.7k
1 vote
0 answers
125 views

Is there a way to get the X/Y position of an inline picture relative to page bounds? I'm open to OOXML solutions too as the API doesn't seem to have anything for this. I have managed to figure out the ...
dotNET's user avatar
  • 35.7k
0 votes
1 answer
84 views

I need to change the size of the first X characters for my add-in. To do this, I should either be able to go through the individual characters or format the first X characters in one go. But I can't ...
Tino Hager's user avatar
  • 1,139
0 votes
2 answers
201 views

Is it possible to retrieve the body of the email being replied to in a conversation even we have multiple emails in conversation. I am attempting to retrieve the email body in compose mode for an ...
Noman Aslam's user avatar
0 votes
1 answer
79 views

i am trying to navigate page to next page in outlook addin . i was also install react router dom. but its not working in outlook addins.what is solution of navigate page to new page like login , ...
Shahzad_Umar's user avatar
0 votes
0 answers
229 views

I have added the below snippet to add the table and chart axis in excel. While clicking the Export to Excel button , no excel is downloaded in the browser. I need to draw a chart with the table data. ...
CodeBox's user avatar
  • 51
-1 votes
1 answer
52 views

I am implementing a loading dialog for Excel addin to let user know its in process, need to wait. I have tried Office.context.ui.displayDialogAsync("https://localhost:3000/#/dialog/loading",{...
Edward's user avatar
  • 30.2k
0 votes
1 answer
144 views

I am using Graph API's recently and there is an API get files content by id. Is there any way to get document id so I can call Graph API and get its content ? Excel.run(function(context) { var ...
Fatih Karameşe's user avatar
0 votes
1 answer
145 views

I have an Office web add-in for Word that needs to fetch custom properties from an API and store them under document.properties.customProperties the user will then be able to insert them into their ...
Alex's user avatar
  • 21
0 votes
1 answer
69 views

I would like to develop a Word Addinn. With which I can work my way through the paragraphs of a Word document and customize the formatting of the document. I would like to color the vowels of words in ...
Tino Hager's user avatar
  • 1,139
0 votes
1 answer
107 views

I have an office js addin that is side loaded while I am developing. I have tried to use the https://learn.microsoft.com/en-us/office/dev/add-ins/testing/clear-cache to remove this in my mac but I ...
hat786's user avatar
  • 3
0 votes
1 answer
108 views

why VSTO Outlook Add-in and Office JS add-in conversationId is not same how can I get same in VSTO like in javascript but javascript conversationId is different then VSTO using JavaScript mail ...
M Јǚйáĩď's user avatar
0 votes
1 answer
77 views

Currently I have an OfficeJS with Angular setup and it works great. However I wanted to structure it in a way that it could call some of our existing API's. I then tried to create a connection with ...
Tom Kurian's user avatar
2 votes
0 answers
68 views

This is more of a bug report for the PowerPoint API. (Office add-in) When using getSelectedDataAsync with coersiontype SlideRange the request fails if there is a new line (\n) character in the title ...
user20000939's user avatar
0 votes
2 answers
73 views

I want to make a Microsoft Word add in that only introduces XML commands in the manifest; that is, it does not need a task pane. Is this possible? Are there any examples of what that might look like, ...
FelixKing's user avatar
1 vote
1 answer
110 views

When I created react outlook add-in and start outlook add-in I got this error in webpack ERROR in ./node_modules/@fluentui/react-icons/lib/utils/fonts/FluentSystemIcons-Resizable.woff2 1:4 Module ...
Waqas Ahmed's user avatar
0 votes
0 answers
34 views

I manage the attendance system of cadets for a military function. Within this, it is required when they have an excused absence to have a valid reason verified by leadership to ensure they meet ...
Mergg's user avatar
  • 1
0 votes
1 answer
147 views

manifest.xml <Control xsi:type="Button" id="SmartFieldButton"> <Label resid="SmartFieldButton.Label" /> ...
Deep Langhnoja's user avatar
0 votes
1 answer
461 views

I am using office js to track the user changes in the document: async function setChangeTrackingMode() { // Sets the change tracking mode. await Word.run(async (context) => { context....
Abdalhadi Jarad's user avatar
0 votes
1 answer
126 views

Have an Outlook add-in that uses the dialog API to prompt the user via MSAL-JS for Graph API access. It works in Safari on Mac, Edge on Mac, Chrome on Mac, FF on Mac, and 100% from any Windows client ...
DEC's user avatar
  • 11
0 votes
1 answer
139 views

I have recently added MobileFormFactor in manifest.xml. If we load a custom addin in outlook client, question is how can we debug this addin when using android mobile outlook client in windows I tried ...
DevM's user avatar
  • 9
0 votes
1 answer
312 views

I have an Office add-in that works for Word, Excel and PowerPoint, but I want it to only be available for Office 2021 onwards (Windows Desktop) I found that it is possible using Requirement Sets, but ...
Emmanuel PC's user avatar
0 votes
1 answer
272 views

I'm trying to do something which seems simple using office js but I can't get it to work. I am reading a pptx file and inserting the first slide into my presentation with the following: //insert new ...
Mike Hollibaugh's user avatar
0 votes
1 answer
432 views

We have deployed a custom Outlook Add-in within our Microsoft 365 environment, targeting a specific Security Group. Our objective is to ensure that only members of this group have access to the add-in....
Amit Thakkar's user avatar
0 votes
1 answer
573 views

I have built an outlook add-in which extracts the details of a mail like sender, subject, the body of the mail, etc and shares it to another messaging app. It is similar to "share to teams" ...
Pearl's user avatar
  • 1
0 votes
1 answer
82 views

Can two independent office-js based PowerPoint addin and VBA based PowerPoint addin are packaged into one? From Office-JS & VBA Addin How to mix together, I understand two office-js based addin ...
yskkin's user avatar
  • 890
3 votes
3 answers
2k views

As title indicates, my add on is failing to sideload. I am trying to follow the official tutorial of microsoft on how to build your first outlook, developing a taskpane: https://learn.microsoft.com/en-...
beni14's user avatar
  • 49
0 votes
1 answer
259 views

I am working in add-in that's why i am using office dialog to login var url = "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=myclientid&response_type=token&...
M Junaid's user avatar
0 votes
1 answer
61 views

We have at team, who needs to have Connected experiences in Office disabled. How can I get a office-js MS Word Add-in with a backend to work with Connected experiences disabled?
emraldinho's user avatar
0 votes
1 answer
541 views

I have a Microsoft Word document with tracked changes enabled, which I am trying to search for a string of text. I want to search for what the text would be if tracked changes were accepted. I do this ...
Joe Donovan's user avatar
0 votes
1 answer
131 views

I have a Outlook Web Add-in that I am developing to be used for Outlook on the Web, but there is a scenario that I need to handle. When a user creates a recurring event then saves it or sends it, they ...
Darren Palmer's user avatar
0 votes
1 answer
77 views

I'm trying to find the best way to get some sort of a button in Outlook (add-in) that will perform some functions on my django project - like parsing the email and search for a specific stirngs in it ...
DiklaS's user avatar
  • 3
0 votes
1 answer
162 views

I developed a outlook addin that has the onMessageSend launchevent, implemented using smart alerts. It works fine on outlook modernUI but in outlook legacy version in windows, it does not. It shows &...
pawan kalyan's user avatar

1
3 4
5
6 7
116