static/manual-en.txt in green_shoes-0.207.0 vs static/manual-en.txt in green_shoes-0.214.0
- old
+ new
@@ -227,12 +227,10 @@
end
end
end
}}}
-''Note: para method displays self with [ and ] in Green Shoes.''
-
==== Block Redirection ====
The `stack` block is a different story, though. It doesn't change `self` and
it's basically a regular block.
@@ -1166,10 +1164,26 @@
Should this video begin playing after it appears? If set to `true`, the video
will start without asking the user.
'''Note:''' Green Shoes doesn't support ''video''.
+=== :back » true or false ===
+
+For: ''shapes, image, textblocks''.
+
+Comes to the back of the other elements.
+
+{{{
+ Shoes.app do
+ rect 100, 100, 100, 100, fill: green
+ rect 120, 120, 100, 100, fill: yellow
+ para 'hello', left: 150, top: 150, front: true
+ oval 150, 150, 100, 100, fill: red
+ oval 180, 180, 100, 100, fill: gray, back: true
+ end
+}}}
+
=== :bottom » a number ===
For: ''all slots and elements''.
Sets the pixel coordinate of an element's lower edge. The edge is placed
@@ -1305,9 +1319,15 @@
STYLE_OPTIONS is a whitespace separated list of words where each WORD describes
one of style, variant, weight, stretch, or gravity, and SIZE is a decimal
number (size in points) or optionally followed by the unit modifier "px" for
absolute size. Any one of the options may be absent. If FAMILY-LIST is absent,
then the default font family (Arial) will be used.
+
+=== :front » true or false ===
+
+For: ''shapes, image, textblocks''.
+
+Comes to the front of the other elements.
=== :group » a string ===
For: ''radio''.