Mac OS X – Tastenkombination zum Ändern der Textfarbe?

Mac OS X – Tastenkombination zum Ändern der Textfarbe?

does anyone know the shortcut to change the text color on Word 2011 on a Mac?

I would like to ideally select a part of the text, press a key combination, and change the color of the text to the color in the Font toolbar.

Antwort1

Although it's not exactly what you want it can set the text colour to the automatic colour of microsoft word. It's a small applescript code.

tell application "Microsoft Word"
    tell active window
        set color index of font object of text object of selection to auto
    end tell
end tell

Open up Applescript Editor and save it to ~/Library/Application Support/Microsoft/Office/Word Script Menu Items as what ever you want then open up System Preferences.

In System Preferences go to Keyboard > Shortcuts > App Shortcuts The press the + sign at under the list of shortcuts. Next select Microsoft word from the application drop down. For the Menu item name it exactly what you called your script minus the extension. Finally choose a shortcut and enjoy.

Antwort2

Tools >> Customize Keyboard >> Categorize (choose format) >> Commands (find Font Color) >> Fill the shortcut bar with any command that you wish (e.g. Command + R) >> Click OK

Antwort3

There is a relatively easy way to do this

  1. Word auf dem Mac öffnen
  2. Gehe zu TOOLS
  3. Gehe zu TASTATUR ANPASSEN
  4. Gehen Sie im Feld ANPASSEN zu ALLE BEFEHLE
  5. Gehen Sie im Feld BEFEHLE zu FARBE
  6. Wählen Sie die gewünschte Farbe (beginnen Sie in diesem Beispiel mit ROT)
  7. Drücken Sie in der Leertaste die Taste „NEUE TASTATURKURZE“ + + r
  8. Klicken Sie auf die Taste ASSIGN 9. Drücken Sie dann OK. Sie können alle Änderungen vornehmen, bevor Sie die Taste OK drücken.

Antwort4

Um ckbs Frage zum Anpassen der Farbe zu beantworten, hier ein Link, der meiner Meinung nach funktioniert: https://wordribbon.tips.net/T004269_Shortcuts_to_Change_Text_Colors.html

Im Grunde müssen Sie ein Makro hinzufügen und ihm dann eine Verknüpfung zuweisen. Hier ist der Code, den ich verwende:

Sub FigTab() 
' 
' YourNewMarco 
' MakeTextYellow 
'
  Selection.Font.Color = RGB(196, 89, 17)
End Sub

Ich habe ihm die Tastenkombination „cmd + Shift + F“ zugewiesen.

verwandte Informationen