I am practicing with Form Recognizer and Business Card Reader.
I've got all the pieces on a PA screen and I've created a flow.
I can upload a card to the Business Card Reader and see the card in the view.
I have a Checkbox control that collects the JSON from the card; it has the below in the OnSelect property:
Collect(CardImageCollection,
{
picture: BusinessCardReader1.CleanedImage,
Name: Rand() & ".jpg"
}
);
Set(
varJSON,
JSON(
CardImageCollection,
JSONFormat.IncludeBinaryData
)
);
I have a TextInput field that has the varJSON in the 'Default' property.
Every time I try to collect the data from the card the system locks up and I get the PA screen 'Wait or Reload' information message.
Any thoughts on why this won't complete? I got it to work the very first time but not since.