Yes you can, with scripting !
OnSceneOnline
[PHP]
Dim MaFont as xpfont
Engine.GetFontByName("Font1", MaFont)
MaFont.Spacing = -11.50 'Here adjust IN value
[/PHP]
OnRender
[PHP]
Dim MaFont as xpfont
Engine.GetFontByName("Font1", MaFont)
MaFont.Spacing = MaFont.Spacing + 0.15 'Here the speed of "grow"
[/PHP]
If you want to stop it a moment, add a condition like
[PHP]
If MaFont.Spacing < 20 Then
MaFont.Spacing = MaFont.Spacing + 0.15 'Here the speed of "grow"
End if
[/PHP]
#XPression