PLACES THE PICTURE IN RIGHT POSITION (AND THE CAPTION IN LEFT POSITION) IN THE OBJECT BUTTON_PICTURE NUMBER N
ACTION
The command PICTURE_RIGHT N places the picture in right position (and the caption in left position) in the object BUTTON_PICTURE number N
SYNTAX:
PICTURE_RIGHT 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_RIGHT
PICTURE_RIGHT N
SEE ALSO
PICTURE_BOTTOM
PICTURE_LEFT
PICTURE_TOP