Home | Contents | Index | Help | < Browse | Browse >
 -------------------------------------------------------------------------

 Flow Right | Down

 Flow sets the way in which selector puts out the items in the window.
 If there is only one row or only one column, then these two flow settings
 works in the same way. If you have "Flow Down" (the normal setting), all
 items (buttons etc.) will be put in the first column first until it's
 full. Then in the next one etc. But if you have "Flow Right", then the
 items will first fill the first ROW, then the next one etc.
 
 Try this example, and you will understand.

	flow [flow]
	unsetenv flow
	
	columns 3
	button "Flow Right" 'setenv flow Right' update
	button "Flow Down" 'setenv flow Down' update
	
	text A
	text B
	text C
	text D
	text E
	text F
	text G
	text H
	text I
	text J
	text K
	text L
	text M
	text N
	text O
	text P
	text Q
	text R
	text S
	text T
	text U
	text V
	text W
	text X
	text Y
	text Z
	text Å
	text Ä
	text Ö



 Default is Down
 
 You can now use FLOW many times in the same script!

 Also see: Rows
           Columns

 -------------------------------------------------------------------------

Home | Contents | Index | Help | < Browse | Browse >