PLACES THE PICTURE IN BOTTOM POSITION (AND THE CAPTION IN TOP POSITION) IN THE OBJECT BUTTON_PICTURE NUMBER N
ACTION
The command PICTURE_BOTTOM N places the picture in bottom position (and the caption in top position) in the object BUTTON_PICTURE number N
SYNTAX:
PICTURE_BOTTOM N
USE ERROR EXAMPLE
rem create a button_picture
button_picture 1
height 1,80:width 1,80
rem draw a blue cross with red background
color 1,200,0,0
2d_target_is 1
2d_pen_width 3
2d_pen_color 0,0,200
2d_line 0,0,25,25
2d_line 0,25,25,0
rem give a text
caption 1,"Text"
wait 1000
picture_bottom 1
wait 1000
picture_left 1
wait 1000
picture_right 1
wait 1000
picture_top 1
PICTURE_BOTTOM
PICTURE_BOTTOM N
SEE ALSO
PICTURE_LEFT
PICTURE_RIGHT
PICTURE_TOP