4

OWA、Mac用Outlook 2016を対象とするOutlookアドインを開発中です& Windows。私の要求は、メールを読んで作っているうちに、の右側にアドインを縦に表示することです。作成する場合は、デフォルトで表示されますが、読み上げには縦に表示する横に表示しています。要するに私のアドインを表示したいのですがEvernoteアドインと全く同じが表示されています。Outlook Web App(OWA)、Outlook 2016 MacおよびWindowsで垂直アドインを表示する方法

お手数をおかけします。 OWAのEvernoteのスクリーンショットは、アイコンの位置(赤で囲んだもの)を含めて、私が見たいものです。

ありがとうございます。

enter image description here

+1

それを達成する上の任意の成功? –

+0

私は同じ種類のものを実装しようとしています。あなたはそれを達成することができますか? –

+0

@alekkalalczyk以下のAnOberoiのように今起こっています。 –

答えて

2

アドインコマンドは、すべてのユーザーにすぐに展開され、すべてのアドインをのOutlook Webため、私たちはそのあなたをロールアウトしたら、それは12月の月に100%であることを期待しますあなたがスクリーンショットで見るように、タスクペインを起動するOWAのボタンを持つことができます。 Windows用のOutlookデスクトップでは、この機能はすでにMAC用のOutlookで利用可能ですが、12月にはこれが予定されています。

+0

から以下の答えをお読みください。ありがとうございます、今日私はボタンが私のスクリーンショットに示されているように上部パネルに表示されていることを発見しました。それでもMacをチェックする。それがMacで起こっているなら、それはとても素晴らしいことになるでしょう。事前に感謝 –

+0

もう1つ質問。私はあなたがチャンスを持っている場合は、見てくださいこのリンク上の質問を投稿しています。問題は、操作中の電子メール本文を送信することです。事前に感謝します –

+0

デスクトップ上のMac用Outlookのためのoffice.jsアドインのサポートは12月に利用可能になるはずですか?私は速いインサイダープログラムにいて、まだ見ていない。 –

3

私は、このような垂直アドインをYEOMAN Office Generatorを使用して作成します。参照のためにこのリンクを使用してください。 GitHub link for yeoman-office-generator. そして、あなたのManifest.xmlファイルに変更を加えるbelowsの通りです:

<?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>