Oh... Then it's by using a
You must be registered to see the links
as
You must be registered to see the links
, with a little bit of
You must be registered to see the links
as final touch.
The trick is to have an image that will have two-three pixel at full transparency at its left side, then to define the
Frame
in such wait that it will keep the right side (where the flower or whatever is) unchanged.
Assuming that the flower is 20 pixels wide:
Python:
style myButton is button:
# Keep as it the 20 first pixels from the right
background Frame( "background.png", right=20 )
# Add a 25 pixel margin at the right side, where the /flower/ will
# take place, plus 5 pixels to aerate.
right_margin 25
screen whatever():
textbutton "whatever":
# Apply this new style to the button.
style "myButton"
action NullAction()