- About ABBYY Scanning Station
- Operator Features
-
Administrator Features
- Batch Types
- Working with Batch Types
- Using Global Settings on Scanning Stations
- Using Local Settings on Scanning Stations
- Storing Internal Data
-
Using Scripts in ABBYY Scanning Station
- Specifics of Scripts Written in .Net Languages
- External Assemblies
- Events
-
Objects
- Objects Available from Export Scripts
-
Objects Available from Event Scripts
- IAttachmentByteArray
- IAttachments
- IBarcodeFindingOptions
- IBatchInfo
- IBatchType
- IBatchTypes
- IDocumentInfo
- IEmptyPageDetectionOptions
- IImageSavingOptions
- IPageInfo
- IPageRect
- IPageSourceInfo
- IRegistrationProperties
- IRegistrationProperty
- IScriptFoundBarcode
- IScriptFoundBarcodes
- IScriptProperties
- IScriptResult
- IScriptValues
- IWorkSpace
- IWorkspaceItem
- IWorkspaceItems
- Sample scripts
-
ABBYY Scanning Station Interface
- Main Window Menus
- Main Window Toolbars
- Batches Window
- Image Window
- Registration Parameters Window
-
ABBYY Scanning Station Dialog Boxes
- Scanning and Export Settings
-
Batch Type Settings
- Batch Type Properties Dialog Box
- Batch Types Dialog Box
- Batch Type Wizard
- Scanner Source
- Batch and Document Separation Options
- Empty Page Detection Settings Dialog Box
- Image Processing Tab of Options Dialog Box
- Export Options
- Image Format Options Dialog Box
- Configuring Scripts
- Document Types
- Registration Parameters of Batches and Documents
- Page Size Control
- Batch Type Name and Description
- Select Batch Types Storage Dialog Box
-
Other Dialog Boxes
- Rescanning Tasks Dialog Box
- Options Dialog Box
- General Tab of Options Dialog Box
- FlexiCapture Server Tab of Option Dialog Box
- Sending Tasks Tab of Options Dialog Box
- Toolbar Customization Dialog Box
- Script Editor
- Batch Properties Dialog Box
- Document Properties Dialog Box
- Page Properties Dialog Box
- Sending Tasks Dialog Box
- Differences Between the Administrator Mode and the Operator Mode
-
Appendix
- Hardware and Software Requirements
- Keyboard Shortcuts
- Supported Barcode Types
- Supported input formats
- Possible Combinations of Formats, Color Modes and Codecs
- Alphabet used in regular expressions
- Patents
- Copy Protection
- Technical Support
- Third-party technologies
- How to Buy ABBYY Scanning Station
- End-User License Agreement (EULA)
- End-User License Agreement (EULA)
English (English) - Change language
Sample scripts
Automatic station
The automatic station scans images, exports the received batch and closes.
[JScript] Scan(); var batch = Batches( Batches.Count - 1 ); Send( batch ); while( !batch.IsExported ) { Wait( 100 ); } Exit();
Fully functional export
[JScript] var fso = new ActiveXObject("Scripting.FileSystemObject"); if( ResultPath == "" ) { ResultPath = "C:\\Export"; } if( !fso.FolderExists( ResultPath ) ) { fso.CreateFolder( ResultPath ); } var params = NewImageSavingOptions(); params.AddProperFileExt = true; params.Format = "bmp"; var exportedPageCount = CalcExportedPageCount(); NotifyProcessingProgress( exportedPageCount , PageCount - exportedPageCount ); for( i = 0; i < Children.Count; i++ ) { var item = Children.Item( i ); if( item.IsDocument ) { if( !item.IsExported ) { var docDir = ResultPath + "\\" + item.Name; if( !fso.FolderExists( docDir ) ) { fso.CreateFolder( docDir ); } for( j = 0; j < item .Children.Count; j++ ) { CheckCanceled(); var page = item.Children.Item( j ); if( !page.IsExported ) { page.SaveAs( docDir + "\\" + page.Name, params ); exportedPageCount++; NotifyProcessingProgress( exportedPageCount , PageCount - exportedPageCount ); page.IsExported = true; } } item.IsExported = true; } } else { CheckCanceled(); if( !item.IsExported ) { item.SaveAs( ResultPath + "\\" + item.Name, params ); exportedPageCount++; NotifyProcessingProgress( exportedPageCount, PageCount - exportedPageCount ); item.IsExported = true; } } }
1/14/2021 2:17:19 PM