Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Grouping in Layout

From: laplace::worldnet::fr at: 26-Jun-2002 16:51

Hello, I'm looking at rebolview, I tried to do a very simple thing: an image gallery with a title with each image and I can't cope with below, across and return ? This one is ok across image %pic1.gif image %pic2.gif return image %pic3.gif image %pic4.gif return But how to group an image with its title ? across [ image %pic1.gif text "pic1" ] [ image %pic2.gif text "pic2" ] return [ image %pic3.gif text "pic3" ] [ image %pic4.gif text "pic4" ]