When I create animations using MetaPost, I typically do something like

for n=1 upto N:
   beginfig(n);
      <some code>
   endfig;
endfor;

and a sequence of figures are created.  How can I do this in ConTeXt using \startMPpage ... \stopMPpage?

Troy Henderson