Created by potrace 1.16, written by Peter Selinger 2001-2019

Miva Developer Docs


Returns program flow to the top of the loop, performing the operations would normally occur at the bottom of the loop i.e. reading the next line.

Syntax
<MvCALLCONTINUE> 

This examples calls a URL stripping out any tags by using <MvCALLCONTINUE> to ignore tag objects.

<MvCALL ACTION = "g.url" METHOD = "POST"
    <MvIF EXPR = "{ s.callobjecttype EQ 'tag'}">
        <MvCALLCONTINUE>
    </MvIF>

    ... process the text ...
</MvCALL>