Răspuns Re-Arranging the Animation items?

  • 24 mai 2012 11:56
     
     

    Hello experts,

    Any idea on how can I re-arrange the Animation Items (Fade, Appear, Fly, etc...) int he Animation group in the Animation Ribbon?

    Thx


    3D Interactive Simulations And Web Developer

Toate mesajele

  • 25 mai 2012 02:48
    Moderator
     
     

    Hi Hassan,

    Thanks for posting in the MSDN Forum.

    I would recommend you tell me you PowerPoint version before we work on it.

    Have a good day,

    Tom


    Tom Xu [MSFT]
    MSDN Community Support | Feedback to us

  • 25 mai 2012 03:29
     
     
    2010

    3D Interactive Simulations And Web Developer

  • 26 mai 2012 14:51
     
     
    Hello sir, I am still waiting...

    3D Interactive Simulations And Web Developer

  • 28 mai 2012 09:15
    Moderator
     
     

    Hi Hassan,

    After some research I think there has no work round for you via VSTO technic.

    Have a good day,

    Tom


    Tom Xu [MSFT]
    MSDN Community Support | Feedback to us

  • 29 mai 2012 00:49
     
     
    So cant I creat a group called my animations, which contains 2 or 3 animations?

    3D Interactive Simulations And Web Developer

  • 29 mai 2012 07:12
    Moderator
     
     

    Hi Hassan,

    You can create a new ribbon tab or group on powerpoint and set some ribbon components to express your animations in theory. If you want to do that I would recommend you use Ribbonxml to approach your goal.

    Have a good day,

    Tom


    Tom Xu [MSFT]
    MSDN Community Support | Feedback to us

  • 29 mai 2012 11:18
     
     
    How to do that, can u help me in tutorial?

    3D Interactive Simulations And Web Developer

  • 30 mai 2012 06:48
    Moderator
     
     Răspuns Are cod

    Hi Hassan,

    This is a sample of Ribbonxml

    <?xml version="1.0" encoding="UTF-8"?>
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
      <ribbon>
        <tabs>
          <tab id="NewAnimationTab" label="MyAnimation">
            <group id="MyPreview"
                   label="Preview">
              <splitButton idMso="AnimationPreviewMenu" size="large"/>
            </group>
            <group id="MyCustomize" label="My Advanced Animation">
              <gallery idMso="AnimationAddGallery" size="large"/>
              <toggleButton idMso="AnimationCustom"/>
              <menu idMso="AnimationTriggerAddMenu"/>
              <control idMso ="AnimationPainter"/>
            </group>
            <group id="MyAnimations" label="My Animation">
              <gallery idMso="AnimationGallery" />
              <menu idMso="EffectOptionsMenu" size="large"/>
            </group>
          </tab>
          <tab idMso="TabAnimations" visible="false"/>
        </tabs>
      </ribbon>
    </customUI>

    This comes form a Powerpoint add-in, in this add-in we create a ribbon via ribbon xml.

    It replace some control in customized tab you can complete it via reference the http://www.microsoft.com/en-us/download/details.aspx?id=6627.

    Have a good day,

    Tom


    Tom Xu [MSFT]
    MSDN Community Support | Feedback to us

  • 30 mai 2012 14:04
     
     

    In my solution, there is no xml file!!!.

    I ahve Ribbon1.CS which I can customize visually and I did customized it and added controls to it.

    So where to find the xml to edit it?


    3D Interactive Simulations And Web Developer

  • 31 mai 2012 05:01
    Moderator
     
     Răspuns

    Hi Hassan,

    I'm wondering that you use Ribbon (Visual Designer) to create ribbon class. It has limitation on your issue. We can't set idMso for the ribbon components under this way. You need create a Ribbon via Ribbon (XML) in you project and use the xml content which I shown to you.

    Have a good day,

    Tom


    Tom Xu [MSFT]
    MSDN Community Support | Feedback to us