Add Microsoft Equation 3.0 to shortcut bar in Word 2007

  • Thread starter Thread starter RoyalHale
  • Start date Start date
R

RoyalHale

I am wondering if it is possible to create a shortcut to the Microsoft
Equation 3.0 application to the shortcut bar in Word 2007. I was able to add
the Insert object button so that the popup comes up for me to pick the
application but being able to just add it with one click would save alot of
time. My class requires using this so I can't use the new Equation editor.
Any tips would be appreciated
 
It's not as simple as a right-click and selecting "Add to QAT", but it
can be done. We have an article describing how:
http://www.dessci.com/en/support/mathtype/tsn/tsn124.htm

Of course, MathType gives you more functionality, and adds a full
MathType tab to the Ribbon.

--
Bob Mathews
Director of Training
Design Science, Inc.
bobm at dessci.com
http://www.dessci.com/free.asp?free=news
FREE fully-functional 30-day evaluation of MathType
MathType, WebEQ, MathPlayer, MathFlow, Equation Editor, TeXaide
 
RoyalHale said:
I am wondering if it is possible to create a shortcut to the Microsoft
Equation 3.0 application to the shortcut bar in Word 2007. I was able
to add the Insert object button so that the popup comes up for me to
pick the application but being able to just add it with one click
would save alot of time. My class requires using this so I can't use
the new Equation editor. Any tips would be appreciated

Yes, it's possible. You need to add a small macro to the Normal.dotm
template, and then you can add a Quick Access Toolbar button to run the
macro.

The macro is this:

Sub RunEqnEditor()
Dim Eqn As InlineShape
Set Eqn = ActiveDocument.InlineShapes.AddOLEObject( _
ClassType:="Equation.3", Range:=Selection.Range)
End Sub

Read http://www.gmayor.com/installing_macro.htm if you need instructions.

Once the macro is saved in Normal.dotm, go to the Customize dialog, choose
the Macros category, and add this macro to the Quick Access Toolbar. You can
select it in the right-hand list, click the Modify button, and change the
icon (I used the blue Greek pi) and the name that appears as the mouseover
tip.

If you like, you can also click the Keyboard shortcuts: Customize button in
the dialog and add a shortcut to run the macro.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Back
Top