1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
ARB-Input-Mask
# This is a simple user-mask example.
# What to edit
@ITEMTYPE=Species
# Title of the user-mask-window
@TITLE=Expert mask
# Spacing in window
@X_SPACING=5
@Y_SPACING=3
# Show edit/reload button
@EDIT=1
# ---------------------------
# The definition of the mask:
@MASK_BEGIN
TEXT("Switch to..") CHANGEMASK("Test","test.mask")
TEXT("You are editing") SELF()
NEW_SECTION()
TEXTFIELD("Expert name", "expert/name", 30)
NUMFIELD( "Rating ", "expert/rating", 3, 1, 10)
@MASK_END
|