Hi all
I have a macro that I used to change the position of components in glyphs.
from robofab.world import CurrentFont
#
f = CurrentFont()
#
one = [
'Aacute',
'Abreve',
'Acircumflex',
'Adieresis',
'Agrave',
'Amacron',
'Atilde',
'AEacute',
'Aring',
]
for g in one:
f[g].components[0].move((0,-5))
f[g].mark = 10
f.update()
If I try and use it now I get an error
Traceback (most recent call last):
File "<string>", line 85, in <module>
IndexError: list index out of range
Does anyone know why I'm getting this error or how to fix it.