4

OWA, Mac 용 Outlook 2016 & Windows를 대상으로 Outlook 추가 기능을 개발 중입니다. 내 요구 사항은 메일을 읽고 작성하는 동안 오른쪽에 추가 기능을 세로로 표시하는 것입니다. 작성을 위해 기본적으로 원하는대로 표시하지만 읽기에는 세로로 표시하려는 가로로 표시됩니다. 즉, 내 추가 기능을 보여 드리고 싶습니다 Evernote 추가 기능과 똑같은 내용이 표시됩니다.Outlook Web App (OWA), Outlook 2016 Mac 및 Windows의 Outlook 추가 기능에서 세로 창 표시 방법

귀하의 도움을 많이 주시면 감사하겠습니다. OWA에서 Evernote의 스크린 샷은 아이콘 위치 (빨간색으로 묶음)를 포함하여 내가 보여주고 싶은 것입니다.

미리 감사드립니다.

enter image description here

+1

를 달성에 모든 성공 : 당신의 manifest.xml 파일에 GitHub link for yeoman-office-generator. 그리고 변경 사항이는 belows로 무엇입니까? –

+0

동일한 종류의 것을 구현하려고합니다. 그것을 성취 할 수 있습니까? –

+0

@alekkowalczyk 아래 AnOberoi에서 언급 한 것처럼 지금 일어나고 있습니다. –

답변

2

추가 기능 명령은 모든 사용자에게 곧 출시 될 모든 추가 기능을 아웃룩 웹과 우리는 당신을 출시 일단 12 월 달에 100 %가 될 것으로 예상 스크린 샷에서 볼 수 있듯이 OWA에서 작업 창을 실행하는 버튼을 가질 수 있습니다. Windows 용 Outlook 데스크톱의 경우이 기능은 이미 Mac 용 Outlook에서도 사용할 수 있지만 12 월에 출시 될 예정입니다.

+0

에서 아래 답변을 읽어주십시오. 감사합니다. 오늘 스크린 샷에 표시된 것처럼 상단 패널에 버튼이 표시됩니다. 그러나 Mac을 확인하십시오. 그것이 Mac에서 일어나고 있다면 그것은 아주 좋을 것입니다. 사전에 고마워 –

+0

한 번 더 질문. 나는이 링크에 질문을 올렸습니다. 기회가 있다면 좀보세요. 질문은 그것을 보내는 동안 조작 이메일 본문에 관한 것입니다. 미리 감사드립니다. –

+0

데스크톱 용 Mac 용 Outlook 용 office.js Add-In 지원은 12 월에 제공 될 예정입니까? 나는 빠른 내부자 프로그램에 있고 아직도 그것을 보지 않고있다. –

3

저는 YEOMAN Office Generator를 사용하여 수직 형 추가 기능을 만듭니다. 참조 용으로이 링크를 사용하십시오.

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