/usr/share/pymt-examples/widgets/label_fade.py is in python-pymt 0.5.1-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | from pymt import *
w = getWindow()
m = MTLabel(label='Welcome', pos=w.center, color=(1., 0, 0, 1.), font_size=12., anchor_x='center', anchor_y='middle')
m.do(Animation(duration=5, color=(0, 1., 0, 0), font_size=88.))
runTouchApp(m)
|