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>