Answered Re-Arranging the Animation items?

  • Thursday, May 24, 2012 11:56 AM
     
     

    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

All Replies

  • Friday, May 25, 2012 2:48 AM
    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

  • Friday, May 25, 2012 3:29 AM
     
     
    2010

    3D Interactive Simulations And Web Developer

  • Saturday, May 26, 2012 2:51 PM
     
     
    Hello sir, I am still waiting...

    3D Interactive Simulations And Web Developer

  • Monday, May 28, 2012 9:15 AM
    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

  • Tuesday, May 29, 2012 12:49 AM
     
     
    So cant I creat a group called my animations, which contains 2 or 3 animations?

    3D Interactive Simulations And Web Developer

  • Tuesday, May 29, 2012 7:12 AM
    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

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

    3D Interactive Simulations And Web Developer

  • Wednesday, May 30, 2012 6:48 AM
    Moderator
     
     Answered Has Code

    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

  • Wednesday, May 30, 2012 2:04 PM
     
     

    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

  • Thursday, May 31, 2012 5:01 AM
    Moderator
     
     Answered

    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