Re: Is there any way to put Paste Unformatted on the QAT?

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



Thank you, but I'd have no idea what to do with that (note that Graham
provides step-by-step instructions on installing a macro and making a
button for it), and my QAT already has 35 things on it, and
reconstructing it would not be a pleasant task.

On Apr 7, 10:30 pm, Greg Maxey <gma...@xxxxxxxxx> wrote:
Peter,

Yes there is a way.  It involves a RibbonXML script to customize the
QAT.  QAT customization requires a clean slate (ribbon
startfromscratch).  This means that the script will have to include
XML to restore the Office Menu commands and the Built-in tabs.  The
script shortens the lables to PKWN and VDM:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/
customui">
 <ribbon startFromScratch="true">
   <officeMenu >
    <menu idMso="FileSaveAsMenu" visible="true" />
    <menu idMso="FilePrintMenu" visible="true" />
    <menu idMso="FilePrepareMenu" visible="true" />
    <menu idMso="FileSendMenu" visible="true" />
    <menu idMso="MenuPublish" visible="true" />
    <button idMso="FileClose" visible="true" />
   </officeMenu >
   <tabs>
    <tab idMso="TabHome" visible="true" />
    <tab idMso="TabInsert" visible="true" />
    <tab idMso="TabPageLayoutWord" visible="true" />
    <tab idMso="TabReferences" visible="true" />
    <tab idMso="TabMailings" visible="true" />
    <tab idMso="TabReviewWord" visible="true" />
    <tab idMso="TabView" visible="true" />
    <tab idMso="TabDeveloper" visible="true" />
    <tab idMso="TabAddIns" visible="true" />
   </tabs>
   <qat>
    <sharedControls>
      <control idMso="ParagraphKeepWithNext" label="PKWN" />
      <control idMso="ViewDocumentMap" label="VDM" />
    </sharedControls>
   </qat>
  </ribbon>
</customUI>

On Apr 7, 10:17 am, grammatim <gramma...@xxxxxxxxxxx> wrote:

It works! Thank you.

Looks like there's no way to change the long phrase or the button
going with "Para Keep With Next" or "Document Map," is there? Now that
I know about Modify in the Customize panel, it isn't available for
either of those (and together they use up a couple of inches of QAT!)

On Apr 7, 12:55 am, "GrahamMayor" <gma...@xxxxxxxxxxxxxxxxxx> wrote:

Add the following macro to a button on the QAT or keyboard shortcut.

Sub PasteUnfText()
    On Error GoTo Oops
    Selection.PasteSpecial DataType:=wdPasteText, _
    Placement:=wdInLine
    End
Oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
GrahamMayor -  Word MVP

My web sitewww.gmayor.com
Word MVP web sitehttp://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

grammatimwrote:
It doesn't right-click, and it isn't in the All Commands list. With
the Paste Special button it's still three clicks to get it done.--
.



Relevant Pages

  • Re: Is there any way to put Paste Unformatted on the QAT?
    ... It involves a RibbonXML script to customize the ... QAT customization requires a clean slate (ribbon ...     On Error GoTo Oops ...
    (microsoft.public.word.docmanagement)
  • Re: customizing directory folders
    ... I don't know of any way to customize the info for those templates but: ... I've written a script that will apply all the view customizations you can set to all of a folder's ... non-grouped view to be the default inheritance for My Computer, then return My Computer to its ...
    (microsoft.public.windowsxp.general)
  • Re: dynamically adding cmd button to a form wth dynamic events
    ... >I have a form that I would like to allow users to customize and give them ... Until you mentioned "as well as the event script", ... You can feed script to a separate script control but that's a huge ...
    (microsoft.public.vb.controls)
  • Re: Document management?
    ... here is a link to a script that I've used in the past: ... it works well with FrontPage and it's easy to deploy and customize. ... > I have had a website up for about five years and I have accumulated ...
    (microsoft.public.frontpage.client)
  • Javascript: string detection
    ... I want users to submit a web form, but to stop the form submission if ... I incorporated "http" detection bits of script into my existing ... // Customize these calls for your form ... var theStr = new String; ...
    (comp.lang.javascript)