Importer Scripting Guide for the Digta 420

Size: px
Start display at page:

Download "Importer Scripting Guide for the Digta 420"

Transcription

1 Importer Scripting Guide for the Digta 420 Copyright Winscribe Inc All rights reserved. Publication Date: May 2011

2 Copyright 2011 Winscribe Inc Ltd. All Rights Reserved. Portions of the software described in this document Copyright Microsoft Corporation. All Rights Reserved. Information in this document is subject to change without notice. The software described in this document is furnished under a license agreement or nondisclosure agreement. The software may be used or copied only in accordance with the terms of those agreements. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or any means electronic or mechanical or photocopying and recording for any purpose other than the purchaser's personal use without the written permission of Winscribe Inc. Winscribe is a registered trademark of Winscribe Inc in New Zealand and other countries. Microsoft is a registered trademark, Windows NT and Windows is a trademark of Microsoft Corporation. Dragon NaturallySpeaking is a trademark of Nuance, Inc. and is used here under license. Other brands and their products are the trademarks or registered trademarks of their respective holder and should be noted as such. Winscribe Inc Ltd P.O. Box Takapuna Auckland New Zealand helpdesk@winscribe.com Visit our web page: 2

3 Contents Contents Overview... 4 Create Sources... 5 Step One... 5 Step Two... 7 Create Destinations Create Scripts Create Rules Step One Step Two Display All Information in the Log Window Configure Keywords Technical info: Digta The Controls Display

4 Importer Scripting Guide for the Digta 420 Overview This manual describes the necessary steps to configure the Grundig Digta 420 (or another mobile dictation device) to successfully upload jobs from the device to the Winscribe server. For that purpose please run Winscribe Importer through Start/Programs/Winscribe/ Winscribe Importer. The steps required to configure the Grundig Digta 420 are as follows: Step Description 1. Create Sources (see page 5) 2. Create Destinations (see page 10) 3. Create Scripts (see page 14) 4. Create Rules (see page 17) 5. Display All Information in the Log Window (see page 21) 6. Configure Keywords (see page 22) 4

5 Create Sources Create Sources To use all dictation folders (A to F) of the Digta 420, it is necessary to create a source for all folders. This is a two step process. The first step is creating sources for folders A to F. The second step is to create a source with the description local_harddrive. Step One Create sources for folders A to F as follows: 1. Open Winscribe Internet Importer and choose Sources from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Winscribe Importer Source Wizard will be displayed. Click on the Next button to create a new source. 4. Enter a name for the source (for example Digta420_FolderA) and then click on the Next 5

6 Importer Scripting Guide for the Digta Click on the folder icon, then choose the source folder, in this example R:\DSS\A, and confirm by clicking on the OK Then click on the Next 6. Leave the next window blank and click on the Next 7. Put in 1000 as the default Author ID and 01 as the default Job Type ID. Leave the default priority as Normal. Then click on the Next 6

7 Create Sources 8. Tick the Remove files after copy checkbox. Finally click on the Finish 9. Repeat this procedure for the remaining folders B to F. Step Two Create a source with the description local_harddrive, as follows: 1. Create the appropriate folder on the local hard drive (for example: C:\Winscribe\imports_local). 2. Click on the New icon on the menu bar. 3. When the Source Wizard is displayed, click the Next button to continue. 7

8 Importer Scripting Guide for the Digta Enter a name for the source (such as local_harddrive). Then click on the Next 5. Click on the folder icon, then choose the source folder, in this example C:\Winscribe\ imports_local, and confirm by clicking on the OK Then click on the Next 6. Leave the next window blank and click on the Next 8

9 Create Sources 7. Put in 1000 as the default Author ID and 01 as the default Job Type ID. Leave the default priority as Normal. Then click on the Next 8. Tick the following checkboxes: Remove files after copy Archive files Put in a value for Remove archives after... days (e.g. 7). Finally click on the Finish 9

10 Importer Scripting Guide for the Digta 420 Create Destinations Create destinations as follows: 1. Open Winscribe Internet Importer and choose Destinations from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Destination Wizard will be displayed. Click on the Next 4. Enter a Destination name (such as local_harddrive). Then click on the Next 10

11 Create Destinations 5. Select the Copy files to a folder radio Then click on the Next 6. First click on the folder icon, then choose the destination folder, in this example C:\Winscribe\ imports_local, and confirm by clicking on the OK Then click on the Next 7. Leave the last window blank and click on the Finish 8. Click again on the New icon on the menu bar. 11

12 Importer Scripting Guide for the Digta In the Destination Wizard window click on the Next 10. Put in a Destination Name such as Winscribe Server, and click on the Next 11. Select the Copy files to a Winscribe Server radion Then click on the Next 12

13 Create Destinations 12. Enter the Winscribe URL (e.g. winscribe). Leave the other fields with the suggested system defaults. Then click on the Next 13. Leave the last window blank and click on the Finish 13

14 Importer Scripting Guide for the Digta 420 Create Scripts Create scripts as follows: 1. Open Winscribe Internet Importer and choose Scripts from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Script Properties window will be displayed. Put in a name for the script (e.g. Digta420). 4. Copy and paste the following text into the script box: Function OctetToHexStr(arrbytOctet) ' Function to convert OctetString (byte array) to Hex string. ' Code from Richard Mueller, a MS MVP in Scripting and ADSI Dim k OctetToHexStr = "" For k = 1 To LenB(arrbytOctet) OctetToHexStr = OctetToHexStr _ & Right("0" & Hex(AscB(MidB(arrbytOctet, k, 1))), 2) Next End Function Function HexToDec(strHex) ' Function to convert Hexadecimal Strings ("0F") to decimal Dim lngresult Dim intindex Dim strdigit Dim intdigit Dim intvalue lngresult = 0 For intindex = Len(strHex) To 1 Step -1 strdigit = Mid(strHex, intindex, 1) intdigit = InStr(" ABCDEF", UCase(strDigit)) - 1 If intdigit >= 0 Then intvalue = intdigit * (16 ^ (Len(strHex) - intindex)) 14

15 Create Scripts lngresult = lngresult + intvalue Else lngresult = 0 intindex = 0 ' stop the loop End If Next HexToDec = lngresult End Function Function readstringfrombinarystream(binarystream, StartPosition, Length) ' Read Length Bytes from binary stream starting at position StartPosition ' returns Hexadecimal String binarystream.position = StartPosition ByteArray = binarystream.read(length) HexStr = OctetToHexStr(ByteArray) 'MsgBox HexStr readstringfrombinarystream = "" For i = 1 To Len(HexStr) Step 2 strhex = Mid(HexStr, i, 2) strchar = Chr(HexToDec(strHex)) 'MsgBox strhex + ": " + strchar readstringfrombinarystream = readstringfrombinarystream + strchar Next End Function Sub main() ' on error resume next Const adtypebinary = 1 ' Position der Grundig-Priorität im Bytestream, 0F==HIGH, alles andere NORMAL Const pospriority = 69 ' Position der Grundig-"Nr." im ByteStream Const posinputstart = 660 Const posinputlength = 13 ' Position der Scanner-Ausgabe im ByteStream Const posscannerstart = 564 Const posscannerlength = 32 ' Defaults strpriority = "NORMAL" strinput = "" strscanner = "" strvoicefilename = objrule.folder & "\" & objrule.filename 'strvoicefilename = "f:\\dss\\a\\ dss" 'MsgBox strvoicefilename Set objfso = CreateObject("Scripting.FileSystemObject") If objfso.fileexists(strvoicefilename) Then Set binarystream = CreateObject("ADODB.Stream") binarystream.type = adtypebinary binarystream.open binarystream.loadfromfile strvoicefilename ' Priorität binarystream.position = pospriority ByteArray = binarystream.read(1) HexStr = OctetToHexStr(ByteArray) 'MsgBox HexStr If HexStr = "0F" Then ' MsgBox "mit Priorität" strpriority = "HIGH" End If strinput = readstringfrombinarystream(binarystream, posinputstart, posinputlength) 'MsgBox strinput strscanner = readstringfrombinarystream(binarystream, posscannerstart, 15

16 Importer Scripting Guide for the Digta 420 posscannerlength) 'MsgBox strscanner End Sub binarystream.close End If 'MsgBox strpriority objrule.jobpriority = strpriority objrule.jobuserfield(1) = strinput objrule.jobuserfield(2) = strscanner 5. Click the OK button to save the script and close the window. 16

17 Create Rules Create Rules To use all dictation folders (A to F) of the Digta 420, it is necessary to create an appropriate rule for each of the dictation folders (sources). One additional rule needs to be created for the import from the local hard drive to the Winscribe Server. Step One First create a rule for folder A of the Digta 420, as follows: 1. Open Winscribe Internet Importer and choose Rules from the navigation panel on the left. 2. Click on the New icon on the menu bar. 3. The Rule Wizard will be displayed. Click on the Next 4. Enter a rule name (e.g. Digta420 folder A to local_harddrive). Then click on the Next 17

18 Importer Scripting Guide for the Digta Choose the previously created source Digta420_FolderA, the destination local_harddrive and the script Digta420. Click on the Next button to continue. 6. Leave the fields in this window blank. Rule setup is now complete. Click on the Next button to close the Wizard. 7. Repeat these steps for the remaining folders (sources) B to F. Step Two Create an additional rule for the dictation transfer from the local hard drive to the WinScibe Server, as follows: 1. Open Winscribe Internet Importer and choose Rules from the navigation panel on the left. 2. Click on the New icon on the menu bar. 18

19 Create Rules 3. The Rule Wizard will be displayed. Click on the Next 4. Enter the following rule name: local_harddrive to Winscribe Server. Then click on the Next 5. Choose the previously created source local_harddrive and the destination Winscribe Server. Leave the script option as None. Then click on the Next 19

20 Importer Scripting Guide for the Digta Leave the boxes in this window blank. Rule setup is now complete. Click on the Next button to close the Wizard. 20

21 Display All Information in the Log Window Display All Information in the Log Window Display all information in the Log Window, as follows: 1. To display all information in the Log Window, open the Options window by selecting Options from the Tools menu. 2. Choose All information from the Log Level box. Click on the OK 21

22 Importer Scripting Guide for the Digta 420 Configure Keywords Before configuring keywords, please make sure that the dictation device is docked. 1. Open the Options window by selecting Options from the Tools menu. 2. Choose the Grundig tab. 3. Add Authors as follows: Choose Author from the dropdown list and put in the required Author IDs (e.g Simon) in the appropriate text box. Then click on the Add 22

23 Configure Keywords 4. Add Worktypes as follows: Choose Worktype from the dropdown list. 5. Enter the required worktypes and click on the Add button after every worktype to transfer the data to the dictation device. Finally click on the OK button to close the Options window. 23

24 Importer Scripting Guide for the Digta 420 Technical info: Digta 420 The DigtaSonic 420 helps heavy dictation users increase efficiency with their speech processing. The DigtaSonic 420 makes professional dictation simple: It is the first of Grundig's proven portable devices to support the DSS Pro speech standard, together with its enhanced security features. It is ideally suited for those using voice recognition software. The functionality of the DigtaSonic 420 is also impressive: Users get a bright colour display with controls and menus clearly shown. The ergonomically shaped, high quality casing features the Soft Touch Composite finish dictating is now a tatcile experience! The large, wide slide swith makes for easy one-handed operation with a positive sliding action 128 MB internal memory for up to 20 hours of voice Optimum sound quality thanks to DSS Pro, perfect for voice recognition Brilliant colour display Operation with batteries or rechargeable internal batteries Extended workflow functions USB interface Enhanced security features (PIN/PUK fort he internal memory) 24

25 Technical info: Digta 420 The Controls Display 25

Importer Scripting Guide for the DPM9600

Importer Scripting Guide for the DPM9600 Importer Scripting Guide for the DPM9600 Copyright Winscribe Inc 2011. All rights reserved. Publication Date: May 2011 Copyright 2011 Winscribe Inc Ltd. All Rights Reserved. Portions of the software described

More information

Winscribe User Importer

Winscribe User Importer Winscribe User Importer 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: August 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software described in this

More information

Server Side Installation Guide

Server Side Installation Guide Winscribe Speech Recognition Server Side Installation Guide Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions

More information

WinScribe Client User Guide

WinScribe Client User Guide WinScribe Client User Guide Version 4.0 WinScribe Inc Ltd P.O Box 33-178 Level 5, 129 Hurstmere Road Takapuna, Auckland, New Zealand. Phone +64 (09) 486-9010 Fax +64 (09) 486-9001 www.winscribe.com Publication

More information

Winscribe Speech Recognition Reporting

Winscribe Speech Recognition Reporting Winscribe Speech Recognition Reporting 4.1 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: April 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software described

More information

WinScribe Author User Guide

WinScribe Author User Guide WinScribe Author User Guide Version 4.0 WinScribe Inc Ltd P.O Box 33-178 Level 5, 129 Hurstmere Road Takapuna, Auckland, New Zealand. Phone +64 (09) 486-9010 Fax +64 (09) 486-9001 www.winscribe.com Publication

More information

WinScribe Web Manager Guide

WinScribe Web Manager Guide WinScribe Web Manager Guide Version 4.0 Copyright WinScribe Inc 2009. All rights reserved. Publication Date: July 2009 Copyright 2009 WinScribe Inc Ltd. All Rights Reserved. Portions of the software described

More information

Client Typist User Guide

Client Typist User Guide Powered by Version 4 Client Typist User Guide SA Professional Typing Services Online cc Telephone: 011 023 2323 011 887 1056 Cellular: 083 375 0312 Facsimile: 086 570 9651 E-mail: info@saprotype.co.za

More information

Winscribe Dragon Speech Recognition Guide

Winscribe Dragon Speech Recognition Guide Winscribe Dragon Speech Recognition Guide 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software

More information

Winscribe Exporter Administration Guide

Winscribe Exporter Administration Guide Winscribe Exporter Administration Guide 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software

More information

Winscribe MSI and Automatic Script Installation

Winscribe MSI and Automatic Script Installation Winscribe MSI and Automatic Script Installation 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the

More information

m5215 Mobile PC Connected Communications Solution

m5215 Mobile PC Connected Communications Solution WALKABOUT VOICE EXCHANGE m5215 Mobile PC Connected Communications Solution say it send it transcribe it WALKABOUT VOICE EXCHANGE Walkabout Voice Exchange The Dictaphone Walkabout Voice Exchange is the

More information

MOBILE DICTATION. Fast, easy-to-use, wireless Anywhere, anytime DS olympus.com.au/proaudio

MOBILE DICTATION. Fast, easy-to-use, wireless Anywhere, anytime DS olympus.com.au/proaudio MOBILE DICTATION Fast, easy-to-use, wireless Anywhere, anytime DS-9500 olympus.com.au/proaudio CAPTURE EVERY MOMENT IN HIGH QUALITY Two-Microphone System designed to record human voice to get your dictation

More information

DS-3500 DS Said. Done. Generation Excellence. Olympus Professional Dictation Systems DS-3500 / DS-7000

DS-3500 DS Said. Done. Generation Excellence. Olympus Professional Dictation Systems DS-3500 / DS-7000 Olympus Professional Dictation Systems / Said. Done. Generation Excellence The power of speech easy, mobile and secure At Olympus, we know how to make the most delicate of technology durable, mobile and

More information

Installation Instructions. DigtaSoft One DigtaSoft DigtaSoft Pro. English

Installation Instructions. DigtaSoft One DigtaSoft DigtaSoft Pro. English Installation Instructions DigtaSoft One DigtaSoft DigtaSoft Pro English Table of Contents Installation Instructions... 1 1. Introduction... 3 About DigtaSoft... 3 System requirements for DigtaSoft... 4

More information

Galileo - Socrates - SNCF. Installation Guide for Windows Xp

Galileo - Socrates - SNCF. Installation Guide for Windows Xp Galileo - Socrates - SNCF Installation Guide for Windows Xp Copyright 1999 Galileo International. All rights reserved. Information in this document is subject to change without notice. The software described

More information

MOBILE DICTATION. Fast, easy-to-use, wireless Anywhere, anytime DS-9500

MOBILE DICTATION. Fast, easy-to-use, wireless Anywhere, anytime DS-9500 MOBILE DICTATION Fast, easy-to-use, wireless Anywhere, anytime DS-9500 MOBILE DICTATION, SECURE FILE MANAGEMENT, FAST SHARING You decide when, where and how you dictate. Two microphones ensure flawless

More information

SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0)

SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0) SafeChain Inc. SafeWire - SoftPro 360 Automation Integration (v1.0) August 2018 4800 Falls of Neuse Road, Suite 400 Raleigh, NC 27609 p (800) 848 0143 f (919) 755 8350 www.softprocorp.com Copyright and

More information

Backup & Sync for Android User Guide

Backup & Sync for Android User Guide Backup & Sync for Android User Guide Copyright Copyright 2018 Webroot. All rights reserved. WSA Backup & Sync for Android User Guide Information in this document is subject to change without notice. The

More information

Alien Handheld RTU Guide Version 3.9

Alien Handheld RTU Guide Version 3.9 Alien Handheld RTU Guide Version 3.9 OSSI W228 N727 Westmound Dr Waukesha WI 53186 USA TEL: 262-522-1870 FAX: 262-522-1872 Ossi-usa.com Intelli-Site Security Management Software Alien Handheld RTU Guide

More information

Customer Inquiries Sten-Tel

Customer Inquiries Sten-Tel STEN-TEL Companion AWC Companion User s Guide Thank you for purchasing STEN-TEL Companion, a software-based transport solution, which combines professional power with your personal touch. The material

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

A Guide for Customer Accounts

A Guide for Customer Accounts A Guide for Customer Accounts Introduction This document contains set up and configuration guides for ODDS Customer Accounts. This manual helps to assist customers with the setup of their ODDS account,

More information

Installation and Upgrade Guide Zend Studio 9.x

Installation and Upgrade Guide Zend Studio 9.x Installation and Upgrade Guide Zend Studio 9.x By Zend Technologies, Inc. www.zend.com Disclaimer The information in this document is subject to change without notice and does not represent a commitment

More information

WinScribe Installation Guide

WinScribe Installation Guide WinScribe Installation Guide Version 4.0 Copyright WinScribe Inc 2009. All rights reserved. Publication Date: August 2009 Copyright 2009 WinScribe Inc Ltd. All Rights Reserved. Portions of the software

More information

USB DRIVER INSTALLATION GUIDE

USB DRIVER INSTALLATION GUIDE USB DRIVER INSTALLATION GUIDE USB 3.0 Supported Please read this installation guide before installing the USB driver. This installation guide describes how to install the USB driver included in the Icom

More information

GraffixPro Studio Getting Started Guide

GraffixPro Studio Getting Started Guide GraffixPro Studio Getting Started Guide The GraffixPro Studio Software is comprised of a set of linked applications: the Administrator, the Library, and the design software. This guide outlines the procedures

More information

Citrix administator guide

Citrix administator guide Dragon speech recognition Enterprise solution Guide Citrix administator guide For: Copyright 2017 Dragon Professional Group/Dragon Legal Group/Dragon Law Enforcement, v15. This material may not include

More information

ODDS (Olympus Dictation Delivery Service) Setup

ODDS (Olympus Dictation Delivery Service) Setup ODDS (Olympus Dictation Delivery Service) Setup This quick and easy How-To Guide will help you set up your new ODDS account and enable you to start using the Olympus Dictation App on your Smartphone. 1.

More information

How to Use Audacity to Create MP3s

How to Use Audacity to Create MP3s Hello, everyone, and welcome to this short video on how to use Audacity to create MP3 files for your EWC advice templates. Why create digital audio for students? 1. Title screen. David on PIP. 2. White

More information

FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine

FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine FuegoBPM TM Enterprise Process Orchestration Engine Configuration Instructions for a JVM Engine FUEGOBPM System Administration Training PART NO. FEPOECv5.5 Date January 1, 2005 Copyright Fuego, Inc. 2004.

More information

Worker Profile Career: Manage Career Information

Worker Profile Career: Manage Career Information Manage Career Information To access and update information about your Career, click the Career application from the Workday homepage. From the Career page you can update or review your information using

More information

RecMic Configuration Tool. Installation Guide

RecMic Configuration Tool. Installation Guide RecMic Configuration Tool Installation Guide Contents Trademarks 3 1 Introduction 4 2 Prepare for installation 5 2.1 System requirements 6 3 Install RecMic Configuration Tool 7 4 Administrative features

More information

Desktop LP - Connect Guide. Version 2.1 February 2016

Desktop LP - Connect Guide. Version 2.1 February 2016 Version 2.1 February 2016 Desktop LP - Connect Guide Copyright 2016 iwebgate. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system,

More information

Script.byu.edu SharePoint Instructions

Script.byu.edu SharePoint Instructions Script.byu.edu SharePoint Instructions Site Actions Menu Go to script.byu.edu, click on Authenticate at the bottom of page, you will be prompted to enter a username and password, use your netid and password

More information

PHILIPS PORTABLE. Integration Guide

PHILIPS PORTABLE. Integration Guide PHILIPS PORTABLE Integration Guide Last modified: 5/23/12 Copyright 2012 Digital Accessories Corporation. All Rights Reserved. Information in this document is subject to change without notice. No part

More information

OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide

OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide OpenText RightFax 10.0 Connector for Microsoft SharePoint 2007 Administrator Guide ii Edition OpenText RightFax 10.0 Connector

More information

Winscribe Installation Guide

Winscribe Installation Guide Winscribe Installation Guide 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the software described

More information

Nuance Management Center administrator guide

Nuance Management Center administrator guide Dragon speech recognition Enterprise solution Guide Nuance Management Center administrator guide For: Copyright Dragon Professional Group/Dragon Legal Group/Dragon Law Enforcement, v15. Nuance Management

More information

How to Install and Setup VoIPOffice Communicator for Mac

How to Install and Setup VoIPOffice Communicator for Mac Page 1 of 10 How to Install and Setup VoIPOffice Communicator for Mac (Software Release 3.8.10) This guide will show you how to install and setup VoIPOffice Communicator for Mac. Click the button below

More information

KODAK Dental Imaging Software Installation Guide for the KODAK1500 Intraoral Camera

KODAK Dental Imaging Software Installation Guide for the KODAK1500 Intraoral Camera 8H7854-01 KODAK Dental Imaging Software Installation Guide for the KODAK1500 Intraoral Camera Notice Carestream Health, Inc., 2009. No part of this publication may be reproduced, stored in a retrieval

More information

Configuration with the DigtaSoft Configuration Center (DSCC)

Configuration with the DigtaSoft Configuration Center (DSCC) Release Notes New features in DigtaSoft Pro - version 6.5 Configuration with the DigtaSoft Configuration Center (DSCC) DigtaSoft Pro from version 6.5 works with a database driven user and resource management.

More information

User s Guide. Creative Desktop Wireless 9000 Pro

User s Guide. Creative Desktop Wireless 9000 Pro User s Guide Creative Desktop Wireless 9000 Pro Information in this document is subject to change without notice and does not represent a commitment on the part of Creative Technology Ltd. No part of this

More information

Quickest way to transfer leads into your Microsoft Excel Work Sheet

Quickest way to transfer  leads into your Microsoft Excel Work Sheet Quickest way to transfer email leads into your Microsoft Excel Work Sheet Quick Start Guide Takes only a few minutes to read 1340 S. De Anza Blvd., Suite #106 San Jose, CA 95129 Phone: (408) 872-3103 Fax:

More information

This manual is the property of mce systems ltd. No part of this manual may be copied, reproduced, stored in a retrieval system, translated or transmit

This manual is the property of mce systems ltd. No part of this manual may be copied, reproduced, stored in a retrieval system, translated or transmit This manual is the property of mce systems ltd. No part of this manual may be copied, reproduced, stored in a retrieval system, translated or transmitted in any form or by any means, electronic, mechanical,

More information

SpeechExec. Enterprise Dictate 6.0 LFH7330. User manual

SpeechExec. Enterprise Dictate 6.0 LFH7330. User manual SpeechExec Enterprise Dictate 6.0 LFH7330 User manual Table of contents 1 Important 4 About this user manual 6 2 Your SpeechExec dictation software 7 Overview SpeechExec work list window 7 Overview SpeechExec

More information

OpenDrive Wordpress Plugin Guide

OpenDrive Wordpress Plugin Guide OpenDrive Wordpress Plugin Guide Version 1.0.4 OpenDrive Online storage, backup and cloud content management Contents 1. Drive:... 3 1.1 Drive... 3 1.2 Working with files... 4 1.2.1 Work with a particular

More information

Acronis Backup & Recovery 11 Beta Advanced Editions

Acronis Backup & Recovery 11 Beta Advanced Editions Acronis Backup & Recovery 11 Beta Advanced Editions Quick Start Guide Table of contents 1 Main components... 3 2 Supported operating systems... 3 3 Where do I install the components?... 3 4 What you need

More information

13.3 RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance

13.3 RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance 13.3 RELEASE NOTES Trimble Accubid Classic Software Introduction New Features/Modifications Update Installation Instructions Product Assistance Version 13.3 Revision A_ENG 2 CLASSIC SOFTWARE RELEASE NOTES

More information

Visual Nexus Version 4.0

Visual Nexus Version 4.0 User Setup Guide Visual Nexus Version 4.0 Document Number: VN-M014-018 Issue: A Ver3.2-3 Date: 31 st OctMay 2008 Oki Electric Industry Co., Ltd. 2003 The information contained herein is the property of

More information

Wireless headset user guide

Wireless headset user guide Dragon speech recognition Professional solution Guide Wireless headset user guide For Nuance Dragon product family Contents Wireless headset user guide 1 Contents 2 Overview 3 Charging your headset 4 Wearing

More information

ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide

ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide ecopy PaperWorks Connector for Microsoft SharePoint Administrator s Guide Part Number: 73-00419 (05/2009) Licensing, Copyright, and Trademark Information The information in this document is subject to

More information

Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager

Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager Installation Guide Integrating Worksoft Certify with IBM Rational Quality Manager Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Integrating Worksoft Certify

More information

Step by Step SQL Server Alerts and Operator Notifications

Step by Step SQL Server Alerts and  Operator Notifications Step by Step SQL Server Alerts and Email Operator Notifications Hussain Shakir LinkedIn: https://www.linkedin.com/in/mrhussain Twitter: https://twitter.com/hshakir_ms Blog: http://mstechguru.blogspot.ae/

More information

Olympus DSS Player Pro

Olympus DSS Player Pro EASTERN DISTRIBUTING Olympus DSS Player Pro R5 Dictation Module Joshua Stewart 7/4/2008 A detailed training manual for the Olympus DSS Player Pro Release 5 Dictation Module. Table of Contents Explanation

More information

AccessVia Publishing Platform

AccessVia Publishing Platform AccessVia Publishing Platform Installation and Setup Guide Publishing Platform Manager Version: 8.6.x Written by: Product Documentation, R&D Date: February 2014 2014 Perceptive Software. All rights reserved

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

Raptor University. Installing Raptor v Instructor: RAPTOR TECHNOLOGIES, LLC

Raptor University. Installing Raptor v Instructor: RAPTOR TECHNOLOGIES, LLC Raptor University Installing Raptor v6.1.5 Instructor: RAPTOR TECHNOLOGIES, LLC This presentation includes the following information: System Prerequisites Access Raptor Support Center Install All Components

More information

Installing TimeMap User Guide

Installing TimeMap User Guide Installing TimeMap User Guide TimeMap, Version 6.0 System Requirements Installing TimeMap Updating TimeMap Versions TimeMap Installation Guide No part of this work may be reproduced or transmitted in any

More information

Olympus Dictation Management System R6. Dictation Module. Reference Manual

Olympus Dictation Management System R6. Dictation Module. Reference Manual Olympus Dictation Management System R6 Dictation Module Reference Manual Contents 1 INTRODUCTION 8 1.1 Olympus Dictation Management System Outline 9 1.1.1 System Configurations of ODMS R6 10 1.1.2 Modules

More information

Quick Start Guide. Takes only a few minutes to read. Quickest way to transfer leads into your ACT! database

Quick Start Guide. Takes only a few minutes to read. Quickest way to transfer  leads into your ACT! database Quickest way to transfer email leads into your ACT! database Quick Start Guide Takes only a few minutes to read 1340 S. De Anza Blvd., Suite #106 San Jose, CA 95129 Phone: (408) 872-3103 Fax: (408) 861-9601

More information

Superior recording. PocketMemo. with 3D Mic technology. Dictation and Peech Recognition Set

Superior recording. PocketMemo. with 3D Mic technology. Dictation and Peech Recognition Set PocketMemo Dictation and Peech Recognition Set Slide-switch operation 3D Mic system SpeechExec Pro software Superior recording with 3D Mic technology The PocketMemo Voice Recorder takes dictation to a

More information

Application Integration Module

Application Integration Module Application Integration Module CM2510190 CM2510190 Warranty While every effort has been made to make this document as accurate and helpful as possible, Océ Imagistics Inc. makes no warranty of any kind

More information

Remote Support. User Guide 7.23

Remote Support. User Guide 7.23 Remote Support User Guide 7.23 Copyright 1997 2011 Cisco and/or its affiliates. All rights reserved. WEBEX, CISCO, Cisco WebEx, the CISCO logo, and the Cisco WebEx logo are trademarks or registered trademarks

More information

Copyright Jetro Platforms, Ltd. All rights reserved.

Copyright Jetro Platforms, Ltd. All rights reserved. Important Notice Copyright 2001 2009 Jetro Platforms, Ltd. All rights reserved. This document is furnished by Jetro Platforms for information purposes only to licensed users of the Jetro COCKPIT product.

More information

AdapterServer. English

AdapterServer. English English Table of Contents AdapterServer... 3 Overview... 3 Starting the AdapterServer configuration... 3 Configuration... 4 Configuration Overview... 4 Adapter... 5 Dictation machine... 7 COM... 7 USB...

More information

VIN Service: Multiple Connections. Mac

VIN Service: Multiple Connections. Mac VIN Service: Multiple Connections Mac Version 2.0 Release 1.2.13.0 April 2016 Copyright 2016 iwebgate. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

Mercury 10 PORTABLE CCTV USER GUIDE WITH SPEECH.

Mercury 10 PORTABLE CCTV USER GUIDE WITH SPEECH. Mercury 10 PORTABLE CCTV WITH SPEECH USER GUIDE www.trysight.com Congratulations on the purchase of your Mercury 10 Portable CCTV with Speech. Please read the manual fully before using. Mercury 10 is

More information

Quickest way to transfer names & addresses into your Address Book

Quickest way to transfer names & addresses into your Address Book Quickest way to transfer names & addresses into your Address Book Quick Start Guide Takes only a few minutes to read 1340 S. De Anza Blvd., Suite #106 San Jose, CA 95129 Phone: (408) 872-3103 Fax: (408)

More information

OLYMPUS PORTABLE. Integration Guide

OLYMPUS PORTABLE. Integration Guide OLYMPUS PORTABLE Integration Guide Last modified: 5/23/12 Copyright 2012 Digital Accessories Corporation. All Rights Reserved. Information in this document is subject to change without notice. No part

More information

Installing TextMap. User Guide. Preliminary Planning Installing TextMap Installing TextMap Binder Import Utility. TextMap, Version 9.

Installing TextMap. User Guide. Preliminary Planning Installing TextMap Installing TextMap Binder Import Utility. TextMap, Version 9. Installing TextMap User Guide TextMap, Version 9.1 Preliminary Planning Installing TextMap Installing TextMap Binder Import Utility TextMap Installation Guide No part of this work may be reproduced or

More information

Better Translation Technology. XTM Connect for Drupal 8

Better Translation Technology. XTM Connect for Drupal 8 Better Translation Technology XTM Connect for Drupal 8 Documentation for XTM Connect for Drupal 8. Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of this

More information

TIE1.80InstallationGuideUK

TIE1.80InstallationGuideUK Installation Guide 112206 2006 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance

RELEASE NOTES. Trimble Accubid Classic Software. Introduction. New Features/Modifications. Update Installation Instructions. Product Assistance 13.1.1 RELEASE NOTES Trimble Accubid Classic Software Introduction New Features/Modifications Update Installation Instructions Product Assistance Version 13.1.1 Revision A_ENG Toronto Office Trimble Canada

More information

KeyNexus Hyper-V Deployment Guide

KeyNexus Hyper-V Deployment Guide v1.0 09/2018 . Copyright Notice Copyright 2018 KeyNexus Inc. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Associate Pro Desktop Typist Hosted

Associate Pro Desktop Typist Hosted Associate Pro Desktop Typist Hosted Dictation Without Boundaries 0 PortNexus Corporation. All rights reserved All other marks are property of their respected owners Table of Contents Item Page # Requirements

More information

CORPUS CHRISTI

CORPUS CHRISTI PRINTING @ CORPUS CHRISTI Contents Introduction... 3 Further help... 3 How to print from your own device using the internet... 4 How to print from the Library and Computer Suite Computers (Students only)...

More information

User Manual. Dockit Archiver

User Manual. Dockit Archiver User Manual Dockit Archiver Last Updated: March 2018 Copyright 2018 Vyapin Software Systems Private Ltd. All rights reserved. This document is being furnished by Vyapin Software Systems Private Ltd for

More information

Guide Citrix administrator guide

Guide Citrix administrator guide Guide Citrix administrator guide For: Copyright 2017 Dragon Medical Practice Edition. This material may not include some last-minute technical changes and/or revisions to the software. Changes are periodically

More information

Healthcare Provider Guide Getting Started

Healthcare Provider Guide Getting Started Healthcare Provider Guide Getting Started Last Update: August 16, 2006 MDinTouch International, Inc 7428 SW 48 Street Miami, FL 33155 Phone 786.268.1161 Fax 786.268.7011 http://www.mdintouch.com Table

More information

Integrated for Océ Setup Guide

Integrated for Océ Setup Guide Integrated for Océ Setup Guide Version 1.2 2016 OCE-20160914 Equitrac Integrated for Océ Setup Guide Document History Revision Date September 14, 2016 Revision List New supported devices/card reader web

More information

hp digital home networking phoneline USB network adapter hn210p quick start guide

hp digital home networking phoneline USB network adapter hn210p quick start guide hp digital home networking phoneline USB network adapter hn210p quick start guide Revision #: 11 Page: 1 of 11 Printed: 08/15/01 05:15 PM The Hewlett-Packard Company makes no warranty of any kind with

More information

Aimetis Face Recognition. 1.3 User Guide

Aimetis Face Recognition. 1.3 User Guide Aimetis Face Recognition 3 User Guide Contents Contents Face Recognition... 3 Installation... 4 Requirements... 4 Install Face Recognition... 4 Configuration... 5 Configure Face Recognition... 5 Settings...5

More information

Amcom Mobile Connect for Android

Amcom Mobile Connect for Android User Guide to Amcom Mobile Connect for Android Amcom Software, Inc. Copyright AMC 2.3 Document Version 1.5 Last Saved Date: June 30, 2011 Copyright 2003-2011 Amcom Software, Inc. All Rights Reserved. Information

More information

Olympus Dictation Delivery Service. Instruction Manual. Version 1.0

Olympus Dictation Delivery Service. Instruction Manual. Version 1.0 Olympus Dictation Delivery Service Instruction Manual Version 1.0 1 Olympus Dictation Delivery Service Table of contents 1. Olympus Dictation Delivery Service Overview... 3 2. Olympus Dictation Portal...

More information

DISCLAIMER Whilst every effort has been made

DISCLAIMER Whilst every effort has been made PUBLISHED BY Gallagher Group Limited Kahikatea Drive, Private Bag 3026 Hamilton, New Zealand www.gallagherams.com Copyright Gallagher Group Limited 2011. All rights reserved. Patents Pending. MyScale Pro

More information

Relativity Designer Installation Guide

Relativity Designer Installation Guide Liant Software Corporation Relativity Designer Installation Guide Version 5 Copyright 1994-2003 by Liant Software Corporation. All rights reserved. Printed in U.S.A. No part of this publication may be

More information

Upgrading from Call Center Reporting to

Upgrading from Call Center Reporting to Upgrading from Call Center Reporting to Reporting for Call Center Upgrade Document Reporting for Call Center Release 2.2.1xx Document Number: 200-0400-110 Document Status: Standard Document Version: 3.02

More information

Vision Express Engraver S5 Installation Guide Vision Engraving & Routing Systems

Vision Express Engraver S5 Installation Guide Vision Engraving & Routing Systems Vision Express Engraver S5 Installation Guide Part number 12-1084-01 Revised: 11/5/2018 Vision Express Engraver S5 Installation Guide All rights reserved. No parts of this work may be reproduced in any

More information

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x ImageNow eforms Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

User Guide. Version 3.0

User Guide. Version 3.0 User Guide Version 3.0 Trademarks Nuance, the Nuance logo, and Dragon are trademarks or registered trademarks of Nuance Communications, Inc. or its affiliates in the United States and/or other countries.

More information

Informatic, Smart Link. Version 3.x POCKET CONTEXT PRO. Multilingual Dictionary for Pocket PC and Pocket PC User's Guide

Informatic, Smart Link. Version 3.x POCKET CONTEXT PRO. Multilingual Dictionary for Pocket PC and Pocket PC User's Guide Informatic, Smart Link Version 3.x POCKET CONTEXT PRO Multilingual Dictionary for Pocket PC and Pocket PC 2002 2002 User's Guide Copyright Notice Copyright 1997-2002 Informatic, Russia and Smart Link Corp.

More information

MeetingSquared Pro Administration User Guide

MeetingSquared Pro Administration User Guide MeetingSquared Pro Administration User Guide Contents Accessing MeetingSquared Pro... 1 Creating a Meeting Group... 2 Editing or Deleting a Meeting Group... 4 Creating a Meeting... 6 Editing a Meeting...

More information

Sophos Anti-Virus standalone startup guide. For Windows and Mac OS X

Sophos Anti-Virus standalone startup guide. For Windows and Mac OS X Sophos Anti-Virus standalone startup guide For Windows and Mac OS X Document date: June 2007 Contents 1 What you need for installation...4 2 Installing Sophos Anti-Virus for Windows...5 3 Installing Sophos

More information

Work 365 Help. User Guide IOTAP MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT.

Work 365 Help. User Guide IOTAP MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. Work 365 Help User Guide IOTAP MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the rights under

More information

SpeechExec. Pro Dictate 10 LFH4400. User manual

SpeechExec. Pro Dictate 10 LFH4400. User manual SpeechExec Pro Dictate 10 LFH4400 User manual Table of contents 1 Important 3 Hearing protection 3 About this user manual 5 Symbols used 5 2 Your SpeechExec dictation software 6 Overview SpeechExec work

More information

Phoenix 1212 Engraver S5 Installation Guide Vision Engraving & Routing Systems

Phoenix 1212 Engraver S5 Installation Guide Vision Engraving & Routing Systems Phoenix 1212 Engraver S5 Installation Guide Part number 12-1084-01 Revised: 12/10/2018 Phoenix 1212 Engraver S5 Installation Guide All rights reserved. No parts of this work may be reproduced in any form

More information

Shoper 9 Tally.ERP 9 Data Bridge

Shoper 9 Tally.ERP 9 Data Bridge The information contained in this document is current as of the date of publication and subject to change. Because Tally must respond to changing market conditions, it should not be interpreted to be a

More information

Vision VE810 Engraver S5 Installation Guide Vision Engraving & Routing Systems

Vision VE810 Engraver S5 Installation Guide Vision Engraving & Routing Systems Vision VE810 Engraver S5 Installation Guide Part number 12-1085-01 Revised: 11/5/2018 Vision VE810 Engraver S5 Installation Guide All rights reserved. No parts of this work may be reproduced in any form

More information

E-FORM GETTING STARTED GUIDE THE COMPLETE ELECTRONIC TAX FORM DVD

E-FORM GETTING STARTED GUIDE THE COMPLETE ELECTRONIC TAX FORM DVD E-FORM GETTING STARTED GUIDE THE COMPLETE ELECTRONIC TAX FORM DVD Updated November 2014 Copyright 2014-2015 Thomson Reuters. All Rights Reserved. Thomson Reuters disclaims any and all liability arising

More information