Prev: Apply built-in style heading 1 to paragraphs where the word "Speaker" occurs
Next: Word 2007: ContentControl's method ToggleEditPlaceholderText i
From: Greg Maxey on 29 Apr 2010 14:36 Janine, Thanks for the link. My goal is to intercept the "Print" command. It doesn't look like it is going to be easy until I find time to learn something about "Backstage." Oh well. "Janine" <janine(a)ribbonspace.com> wrote in message news:0BFF06AA-F830-4EB3-8645-CCD9E7BD5DD2(a)microsoft.com... Of course not - but where I got it from I could (had to check it thought). But I am not going to explain BACKSTAGE which is where the IDs are. "Graham Mayor" <gmayor(a)REMOVETHISmvps.org> wrote in message news:u%23uVX125KHA.5548(a)TK2MSFTNGP04.phx.gbl... You could remember that link? It takes me all my time to remember what I had for breakfast ;) -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org <>>< ><<> ><<> <>>< ><<> <>>< <>><<> "Janine" <janine(a)ribbonspace.com> wrote in message news:85406B26-4B78-4E1B-97D4-2F00F888D3FC(a)microsoft.com... This should be it from memory: http://www.accessribbon.de/en/FrameLinkEN/link.php?out=http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=3f2fe784-610e-4bf1-8143-41e481993ac6 Janine "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message news:eQ9DYht5KHA.1424(a)TK2MSFTNGP04.phx.gbl... > Does anyone know when or where Microsoft will publish a list of control IDs > for the Office System 2010? > > Does anyone know the idMso for the "Print" command located on the new "File" > menu? > > > > -- > Greg Maxey > > See my web site http://gregmaxey.mvps.org > for an eclectic collection of Word Tips. > > Arrogance is a weed that grows mostly on a dunghill (Arabic proverb) > > >
From: Greg Maxey on 29 Apr 2010 16:15 This is as far as I could get and it simply hides the "Print" command and all the rest of the "Print Settings" controls. <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui"> <backstage> <tab idMso="TabPrint" > <firstColumn > <group idMso="GroupPrintSettings" visible="false"> </group> </firstColumn> </tab> </backstage> </customUI> The next egg in the collection under group is "Top Items", "Primary Item" and "Bottom Items." I didn't see anywhere to go with that and didn't see any Control ID in the listing for the "Print" button that appears in that group. I guess I will have to wait on the manual :-( "Janine" <janine(a)ribbonspace.com> wrote in message news:0BFF06AA-F830-4EB3-8645-CCD9E7BD5DD2(a)microsoft.com... Of course not - but where I got it from I could (had to check it thought). But I am not going to explain BACKSTAGE which is where the IDs are. "Graham Mayor" <gmayor(a)REMOVETHISmvps.org> wrote in message news:u%23uVX125KHA.5548(a)TK2MSFTNGP04.phx.gbl... You could remember that link? It takes me all my time to remember what I had for breakfast ;) -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org <>>< ><<> ><<> <>>< ><<> <>>< <>><<> "Janine" <janine(a)ribbonspace.com> wrote in message news:85406B26-4B78-4E1B-97D4-2F00F888D3FC(a)microsoft.com... This should be it from memory: http://www.accessribbon.de/en/FrameLinkEN/link.php?out=http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=3f2fe784-610e-4bf1-8143-41e481993ac6 Janine "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message news:eQ9DYht5KHA.1424(a)TK2MSFTNGP04.phx.gbl... > Does anyone know when or where Microsoft will publish a list of control IDs > for the Office System 2010? > > Does anyone know the idMso for the "Print" command located on the new "File" > menu? > > > > -- > Greg Maxey > > See my web site http://gregmaxey.mvps.org > for an eclectic collection of Word Tips. > > Arrogance is a weed that grows mostly on a dunghill (Arabic proverb) > > >
From: Greg Maxey on 29 Apr 2010 17:47 From a FAQ Collection on Backstage: Can I repurpose one of the existing definitive command buttons, fast command buttons, or tabs by changing its onAction callback attribute? For example can I change the file Save button so that is has an additional type, or displays only one file type? It is not possible to override these commands from the custom UI XML markup or by using the object model. Using the DocumentBeforeSave event is one alternative, but using that doesn't really change the functionality of the individual commands that show up in the Change File Type gallery in the Backstage. A better solution would be to consider hiding the built-in UI and rebuilding it fully with custom commands. Yuck, yuck, yuck!!! What used to be so simple (intercept a built-in command) now requires a complete re-design of the UI :-( Something for the slow winter months I suppose. "Janine" <janine(a)ribbonspace.com> wrote in message news:0BFF06AA-F830-4EB3-8645-CCD9E7BD5DD2(a)microsoft.com... Of course not - but where I got it from I could (had to check it thought). But I am not going to explain BACKSTAGE which is where the IDs are. "Graham Mayor" <gmayor(a)REMOVETHISmvps.org> wrote in message news:u%23uVX125KHA.5548(a)TK2MSFTNGP04.phx.gbl... You could remember that link? It takes me all my time to remember what I had for breakfast ;) -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org <>>< ><<> ><<> <>>< ><<> <>>< <>><<> "Janine" <janine(a)ribbonspace.com> wrote in message news:85406B26-4B78-4E1B-97D4-2F00F888D3FC(a)microsoft.com... This should be it from memory: http://www.accessribbon.de/en/FrameLinkEN/link.php?out=http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=3f2fe784-610e-4bf1-8143-41e481993ac6 Janine "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message news:eQ9DYht5KHA.1424(a)TK2MSFTNGP04.phx.gbl... > Does anyone know when or where Microsoft will publish a list of control IDs > for the Office System 2010? > > Does anyone know the idMso for the "Print" command located on the new "File" > menu? > > > > -- > Greg Maxey > > See my web site http://gregmaxey.mvps.org > for an eclectic collection of Word Tips. > > Arrogance is a weed that grows mostly on a dunghill (Arabic proverb) > > >
From: Janine on 29 Apr 2010 20:59 It is definitely different Greg - below is the link from MSDN. http://msdn.microsoft.com/en-us/library/ee815851(office.14).aspx Janine "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message news:OVBEcW%235KHA.348(a)TK2MSFTNGP02.phx.gbl... From a FAQ Collection on Backstage: Can I repurpose one of the existing definitive command buttons, fast command buttons, or tabs by changing its onAction callback attribute? For example can I change the file Save button so that is has an additional type, or displays only one file type? It is not possible to override these commands from the custom UI XML markup or by using the object model. Using the DocumentBeforeSave event is one alternative, but using that doesn't really change the functionality of the individual commands that show up in the Change File Type gallery in the Backstage. A better solution would be to consider hiding the built-in UI and rebuilding it fully with custom commands. Yuck, yuck, yuck!!! What used to be so simple (intercept a built-in command) now requires a complete re-design of the UI :-( Something for the slow winter months I suppose. "Janine" <janine(a)ribbonspace.com> wrote in message news:0BFF06AA-F830-4EB3-8645-CCD9E7BD5DD2(a)microsoft.com... Of course not - but where I got it from I could (had to check it thought). But I am not going to explain BACKSTAGE which is where the IDs are. "Graham Mayor" <gmayor(a)REMOVETHISmvps.org> wrote in message news:u%23uVX125KHA.5548(a)TK2MSFTNGP04.phx.gbl... You could remember that link? It takes me all my time to remember what I had for breakfast ;) -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org <>>< ><<> ><<> <>>< ><<> <>>< <>><<> "Janine" <janine(a)ribbonspace.com> wrote in message news:85406B26-4B78-4E1B-97D4-2F00F888D3FC(a)microsoft.com... This should be it from memory: http://www.accessribbon.de/en/FrameLinkEN/link.php?out=http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=3f2fe784-610e-4bf1-8143-41e481993ac6 Janine "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message news:eQ9DYht5KHA.1424(a)TK2MSFTNGP04.phx.gbl... > Does anyone know when or where Microsoft will publish a list of control IDs > for the Office System 2010? > > Does anyone know the idMso for the "Print" command located on the new "File" > menu? > > > > -- > Greg Maxey > > See my web site http://gregmaxey.mvps.org > for an eclectic collection of Word Tips. > > Arrogance is a weed that grows mostly on a dunghill (Arabic proverb) > > >
From: Janine on 29 Apr 2010 21:01
Greg, What Manual - I haven't see one of those for years? Janine "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message news:OZpWmi95KHA.3184(a)TK2MSFTNGP05.phx.gbl... This is as far as I could get and it simply hides the "Print" command and all the rest of the "Print Settings" controls. <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui"> <backstage> <tab idMso="TabPrint" > <firstColumn > <group idMso="GroupPrintSettings" visible="false"> </group> </firstColumn> </tab> </backstage> </customUI> The next egg in the collection under group is "Top Items", "Primary Item" and "Bottom Items." I didn't see anywhere to go with that and didn't see any Control ID in the listing for the "Print" button that appears in that group. I guess I will have to wait on the manual :-( "Janine" <janine(a)ribbonspace.com> wrote in message news:0BFF06AA-F830-4EB3-8645-CCD9E7BD5DD2(a)microsoft.com... Of course not - but where I got it from I could (had to check it thought). But I am not going to explain BACKSTAGE which is where the IDs are. "Graham Mayor" <gmayor(a)REMOVETHISmvps.org> wrote in message news:u%23uVX125KHA.5548(a)TK2MSFTNGP04.phx.gbl... You could remember that link? It takes me all my time to remember what I had for breakfast ;) -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org <>>< ><<> ><<> <>>< ><<> <>>< <>><<> "Janine" <janine(a)ribbonspace.com> wrote in message news:85406B26-4B78-4E1B-97D4-2F00F888D3FC(a)microsoft.com... This should be it from memory: http://www.accessribbon.de/en/FrameLinkEN/link.php?out=http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=3f2fe784-610e-4bf1-8143-41e481993ac6 Janine "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message news:eQ9DYht5KHA.1424(a)TK2MSFTNGP04.phx.gbl... > Does anyone know when or where Microsoft will publish a list of control IDs > for the Office System 2010? > > Does anyone know the idMso for the "Print" command located on the new "File" > menu? > > > > -- > Greg Maxey > > See my web site http://gregmaxey.mvps.org > for an eclectic collection of Word Tips. > > Arrogance is a weed that grows mostly on a dunghill (Arabic proverb) > > > |