Good evening!
I just tried to setup a small FLOW chart. However it appears that there must be something broken:
tex error > tex error on line 22 in file /Users/willi/Documents/test-FLOW-chart.tex: Control sequence expected instead of undefined
\location
{3,3}
12 \startFLOWcell
13 \name{TestA}
14 \location{3,2}
15 \shape{action}
16 \text{TestA}
17 \connection[bt]{End}
18 \stopFLOWchart
19
20 \startFLOWcell
21 \name{End}
22 >> \location{3,3}
23 \shape{procedure}
24 \text{End}
25 \stopFLOWcell
26 \stopFLOWchart
27
28 \starttext
29
30 \FLOWchart{TEST}
31
32 \stoptext
Minimal Example:
\usemodule[chart]
\startFLOWchart[TEST]
\startFLOWcell
\name{Begin}
\location{3,1}
\shape{procedure}
\text{Begin}
\connection[bt]{TestA}
\stopFLOWcell
\startFLOWcell
\name{TestA}
\location{3,2}
\shape{action}
\text{TestA}
\connection[bt]{End}
\stopFLOWchart
\startFLOWcell
\name{End}
\location{3,3}
\shape{procedure}
\text{End}
\stopFLOWcell
\stopFLOWchart
\starttext
\FLOWchart{TEST}
\stoptext
Kind regards
Willi