Hello
Does anyone know the vbscript to trigger a script to run upon a document being verified, rather than the default of upon document recognition?
Cheers
Does anyone know the vbscript to trigger a script to run upon a document being verified, rather than the default of upon document recognition?
Cheers
コメント
2件のコメント
Garlic Bread,
What you're looking for is under your Default Batch Type setting. Look at the Stage Tool tab and you should notice a couple default processing stages. What you're looking for is the Verification one. Edit that and add any script you want.
"if me.Field("Field").IsVerified then"
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
if me.Field("Field").IsVerified then me.Field("Field").Text = Replace(me.Field("Field").Text," ","")
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
This is a snippet of a script that I run.
サインインしてコメントを残してください。