setframefpc
Set the next frame number to num or to the last frame plus one
usage: setframefpc: [-h, --help] num
#! @KPYTHON@
from KCWI import Procs
import argparse
# parsing arguments
description = "Set the next frame number to num or to the last frame plus one"
parser = argparse.ArgumentParser(description=description)
parser.add_argument('num', nargs="?",default=None,help='value to set frameno to')
if __name__=="__main__":
args = parser.parse_args()
Procs.set_nextframe(channel='fpc',number=args.num)