4

我正在開發一個針對OWA的Outlook加載項,適用於Mac & Windows的Outlook 2016。我的要求是在閱讀和撰寫郵件時,在右側上垂直顯示加載項。對於撰寫它是默認顯示,但閱讀它是水平顯示,我想垂直顯示。總之我喜歡展示我的加載項與Evernote加載項顯示的完全相同。如何在Outlook Web App(OWA),Outlook 2016 Mac和Windows中的Outlook加載項中顯示垂直窗格

您的幫助將不勝感激。在OWA中使用Evernote的屏幕截圖是我想展示的內容,包括圖標位置(以紅色包圍)。

在此先感謝。

enter image description here

+1

上取得任何成功? –

+0

我試圖實現同樣的事情。你能實現它嗎? –

+0

@alekkowalczyk現在正如AnOberoi下面提到的那樣。 –

回答

2

加載命令即將推出的所有用戶和所有加載項的Outlook Web,我們希望它是在100%的年12月一旦它推出了你將能夠在啓動任務窗格中擁有OWA中的按鈕,如屏幕截圖中所示。對於適用於Windows的Outlook桌面,此功能已可用於Outlook for MAC,我們預計此功能將在十二月份停用!

+0

謝謝,今天我們發現按鈕顯示在屏幕上方,如截圖所示。但要檢查Mac。如果它發生在Mac上,那麼它會非常棒。在此先感謝 –

+0

一個問題。我已經在這個鏈接上發佈了一個問題,請看看是否有機會。問題是關於在發送郵件時操作郵件正文。在此先感謝 –

+0

因此,在桌面上的Office for Mac的Office.js插件支持應在12月份提供?我在快速的內幕方案,仍然沒有看到它。 –

3

我使用YEOMAN Office Generator製作這樣的垂直加載項。供參考使用此鏈接。 GitHub link for yeoman-office-generator. 並更改您的manifest.xml文件是爲初級講座:

<?xml version="1.0" encoding="utf-8"?> 
<OfficeApp xmlns= 
    "http://schemas.microsoft.com/office/appforoffice/1.1" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:type="MailApp"> 

    <Id>7856b76d-42c2-4b40-87df-c4bfb706246f</Id> 
    <Version>1.0</Version> 
    <ProviderName>Microsoft</ProviderName> 
    <DefaultLocale>en-us</DefaultLocale> 
    <DisplayName DefaultValue="Alore MailTracker"/> 
    <Description DefaultValue="Send and Track your emails."> 
    <Override Locale="fr-fr" Value="Send and track your emails with Alore Emailtracker."/> 
    </Description> 
    <!-- Change the following line to specify --> 
    <!-- the web serverthat hosts the icon file. --> 
    <IconUrl DefaultValue="https://localhost:3000/assets/icon-32.png"/> 

    <Hosts> 
    <Host Name="Mailbox" /> 
    </Hosts> 
    <Requirements> 
    <Sets DefaultMinVersion="1.1"> 
     <Set Name="Mailbox" /> 
    </Sets> 
    </Requirements> 

    <FormSettings> 
    <Form xsi:type="ItemRead"> 
     <DesktopSettings> 
     <!-- Change the following line to specify  --> 
     <!-- the web server that hosts the HTML file. --> 
     <SourceLocation DefaultValue="https://localhost:3000/index.html" /> 
     <RequestedHeight>216</RequestedHeight> 
     </DesktopSettings> 
     <TabletSettings> 
     <!-- Change the following line to specify  --> 
     <!-- the web server that hosts the HTML file. --> 
     <SourceLocation DefaultValue="https://localhost:3000/index.html" /> 
     <RequestedHeight>216</RequestedHeight> 
     </TabletSettings> 
    </Form> 
    <Form xsi:type="ItemEdit"> 
     <DesktopSettings> 
     <!-- Change the following line to specify  --> 
     <!-- the web server that hosts the HTML file. --> 
     <SourceLocation DefaultValue="https://localhost:3000/index.html" /> 
     </DesktopSettings> 
     <TabletSettings> 
     <!-- Change the following line to specify  --> 
     <!-- the web server that hosts the HTML file. --> 
     <SourceLocation DefaultValue="https://localhost:3000/index.html" /> 
     </TabletSettings> 
    </Form> 
    </FormSettings> 

    <Permissions>ReadWriteItem</Permissions> 
    <Rule xsi:type="RuleCollection" Mode="Or"> 
    <Rule xsi:type="RuleCollection" Mode="And"> 
     <Rule xsi:type="RuleCollection" Mode="Or"> 
     <Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Read" /> 
     <Rule xsi:type="ItemIs" ItemType="Message" FormType="Read" /> 
     </Rule> 
     <Rule xsi:type="ItemHasRegularExpressionMatch" 
     PropertyName="BodyAsPlaintext" RegExName="VideoURL" 
     RegExValue="https://localhost:3000/resource.html" /> 
    </Rule> 
    <Rule xsi:type="RuleCollection" Mode="Or"> 
     <Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Edit" /> 
     <Rule xsi:type="ItemIs" ItemType="Message" FormType="Edit" /> 
    </Rule> 
    </Rule> 
</OfficeApp>