Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _articles/faq/download-service-only.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ However, considering that more and more enterprise users are using the Dynamic W
Visit the CDN site: [https://www.unpkg.com/browse/dwt/dist/dist/](https://www.unpkg.com/browse/dwt/dist/dist/).

**Step 2:**
For Windows users, please choose ".msi" installer
For Mac users, please choose ".pkg" installer
For Linux users, please choose ".rpm" or ".deb" installer accordingly
- For Windows users, please choose ".msi" installer
- For Mac users, please choose ".pkg" installer
- For Linux users, please choose ".rpm" or ".deb" installer accordingly

![download_installer](/assets/imgs/download_msi_from_cdn.png)

Expand Down
12 changes: 6 additions & 6 deletions _articles/info/api/Dynamsoft_WebTwainEnv.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ Dynamsoft.DWT.CreateDWTObject(
"127.0.0.1",
18622,
18623,
function (DWTObject) {
DWTObject = DWTObject;
function (object) {
DWTObject = object;
DWTObject.SelectSourceAsync()
.then(function () {
DWTObject.AcquireImageAsync({
Expand All @@ -257,8 +257,8 @@ OR
var DWTObject;
Dynamsoft.DWT.CreateDWTObject(
"dwtcontrolContainer",
function (DWTObject) {
DWTObject = DWTObject;
function (object) {
DWTObject = object;
DWTObject.SelectSourceAsync()
.then(function () {
DWTObject.AcquireImageAsync({
Expand Down Expand Up @@ -337,8 +337,8 @@ Dynamsoft.DWT.CreateDWTObjectEx(
{
WebTwainId: "dwtId",
},
function (DWTObject) {
DWTObject = DWTObject;
function (object) {
DWTObject = object;
DWTObject.Viewer.bind("dwtcontrolContainer");
DWTObject.Viewer.show();
DWTObject.SelectSourceAsync()
Expand Down