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:48Moderator
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:292010
3D Interactive Simulations And Web Developer
-
26 mai 2012 14:51Hello sir, I am still waiting...
3D Interactive Simulations And Web Developer
-
28 mai 2012 09:15Moderator
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:49So cant I creat a group called my animations, which contains 2 or 3 animations?
3D Interactive Simulations And Web Developer
-
29 mai 2012 07:12Moderator
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:18How to do that, can u help me in tutorial?
3D Interactive Simulations And Web Developer
-
30 mai 2012 06:48Moderator
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
- Marcat ca răspuns de Tom_Xu_WXModerator 5 iunie 2012 06:03
-
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:01Moderator
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
- Marcat ca răspuns de Tom_Xu_WXModerator 5 iunie 2012 06:03