Can all guides across all glyphs be universally cleared

Can all guides across all glyphs be universally cleared, bypassing the hide/show guides functionality and facilitating a comprehensive removal with a single action?

That’s a case for a small script in the Macro Panel:

for glyph in Font.glyphs:
	for layer in glyph.layers:
		layer.guides.clear()
2 Likes

Thank you :pray:

More generally, there’s a script called Garbage Collection that does this and similar jobs.

1 Like