Forked from weiweihuanghuang/Show Glyphs with this Anchor.py
Last active
December 6, 2015 22:37
-
-
Save schriftgestalt/df1d24c523b1aeb270e5 to your computer and use it in GitHub Desktop.
Show Glyphs with this Anchor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#MenuTitle: Show Glyphs with this Anchor | |
# -*- coding: utf-8 -*- | |
__doc__=""" | |
New Tab with all Glyphs that have the selected anchor. | |
""" | |
thisFont = Glyphs.font # frontmost font | |
selectedLayer = thisFont.selectedLayers[0] | |
selection = selectedLayer.selection | |
editString = "" | |
for anchor in selection: | |
if type(anchor) == GSAnchor: | |
anchorName = anchor.name | |
for glyph in thisFont.glyphs: | |
thisLayer = glyph.layers[selectedLayer.associatedMasterId] | |
if anchorName in thisLayer.anchors.keys(): | |
editString += "/" + glyph.name | |
if len(editString) > 0: | |
thisFont.newTab(editString) ### Open Tab with all Characters |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment