You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 4, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
***Result tree parsing**: The recognition result tree is exposed and fully traversable.
17
17
***Typesetting (coming soon)**: Replace ink with digital equivalent, whether it is text, music, shapes or mathematical expressions.
18
18
19
-
Learn more on MyScriptJS in the [Developer Guide](http://myscript.github.io/MyScriptJS/developer-guide/) and [API Reference Guide](http://myscript.github.io/MyScriptJS/api-reference/).
19
+
Learn more on MyScriptJS in the [Developer Guide](http://doc.myscript.com/MyScriptJS/1.0/index.html) and [API Reference Guide](http://doc.myscript.com/MyScriptJS/1.0/reference/index.html).
Copy file name to clipboardExpand all lines: bower.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
{
2
2
"name": "myscript",
3
-
"version": "1.0.9",
3
+
"version": "1.0.10",
4
4
"main": "./dist/myscript.js",
5
-
"description": "MyScriptJS is a free and open-source JavaScript library providing the easiest way to use MyScript Cloud handwriting recognition in your web app",
5
+
"description": "The JavaScript library for the MyScript Cloud recognition service",
Copy file name to clipboardExpand all lines: package.json
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
{
2
2
"name": "myscript",
3
-
"version": "1.0.9",
3
+
"version": "1.0.10",
4
4
"main": "./dist/myscript.js",
5
-
"description": "MyScriptJS is a free and open-source JavaScript library providing the easiest way to use MyScript Cloud handwriting recognition in your web app",
5
+
"description": "The JavaScript library for the MyScript Cloud recognition service",
Copy file name to clipboardExpand all lines: resources/samples/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Welcome to the [MyScript](www.myscript.com) JavaScript framework.
4
4
5
-
Learn more in the [Developer Guide](http://myscript.github.io/MyScriptJS/developer-guide/index.html) and the [API Reference](http://myscript.github.io/MyScriptJS/api-reference/index.html).
5
+
Learn more in the [Developer Guide](http://doc.myscript.com/MyScriptJS/1.0/index.html) and the [API Reference](http://doc.myscript.com/MyScriptJS/1.0/reference/index.html).
Copy file name to clipboardExpand all lines: resources/samples/analyzer/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Welcome to the [MyScript](www.myscript.com) JavaScript framework.
4
4
5
-
Learn more in the [Developer Guide](http://myscript.github.io/MyScriptJS/developer-guide/index.html) and the [API Reference](http://myscript.github.io/MyScriptJS/api-reference/index.html).
5
+
Learn more in the [Developer Guide](http://doc.myscript.com/MyScriptJS/1.0/index.html) and the [API Reference](http://doc.myscript.com/MyScriptJS/1.0/reference/index.html).
6
6
7
7
## Installation
8
8
@@ -107,7 +107,7 @@ Besides, the pointerId variable needs to be added: Its role is make sure that ev
107
107
</html>
108
108
```
109
109
110
-
### Create a [Renderer](http://myscript.github.io/MyScriptJS/api-reference/classes/AnalyzerRenderer.html)
110
+
### Create a [Renderer](http://doc.myscript.com/MyScriptJS/1.0/reference/index.htmlclasses/AnalyzerRenderer.html)
111
111
112
112
You need to create a renderer to draw strokes on your canvas. To do so, provide the renderer with canvas context (size, background, etc.) and ink coordinates.<br>The renderer that you define depends on the type of recognition you want to achieve.
113
113
@@ -157,9 +157,9 @@ You need to create a renderer to draw strokes on your canvas. To do so, provide
157
157
```
158
158
159
159
160
-
### Create a [InkManager](http://myscript.github.io/MyScriptJS/api-reference/classes/InkManager.html)
160
+
### Create a [InkManager](http://doc.myscript.com/MyScriptJS/1.0/reference/index.htmlclasses/InkManager.html)
161
161
162
-
You need to build a stroker to catch and store the drawn strokes. The stroker will transform them into proper [MyScript Strokes](http://myscript.github.io/MyScriptJS/api-reference/classes/Stroke.html) to use them as input components for the recognition process. Note that the undo/redo feature is not possible without a stroker.
162
+
You need to build a stroker to catch and store the drawn strokes. The stroker will transform them into proper [MyScript Strokes](http://doc.myscript.com/MyScriptJS/1.0/reference/index.htmlclasses/Stroke.html) to use them as input components for the recognition process. Note that the undo/redo feature is not possible without a stroker.
163
163
164
164
```javascript
165
165
(function() {
@@ -211,7 +211,7 @@ You need to build a stroker to catch and store the drawn strokes. The stroker wi
211
211
})();
212
212
```
213
213
214
-
### Create a [Recognizer](http://myscript.github.io/MyScriptJS/api-reference/classes/AnalyzerRecognizer.html)
214
+
### Create a [Recognizer](http://doc.myscript.com/MyScriptJS/1.0/reference/index.htmlclasses/AnalyzerRecognizer.html)
215
215
216
216
You need to create the last object, namely the recognizer. Its role is to manage the recognition within MyScript JS by sending requests and receiving responses to and from MyScript Cloud. The recognizer that you define depends on the type of recognition you want to achieve.
217
217
@@ -227,7 +227,7 @@ var analyzerRecognizer = new MyScript.AnalyzerRecognizer();
227
227
228
228
### Launch the recognition
229
229
230
-
To launch the recognition process, gather your input components and call the method [`doSimpleRecognition`](http://myscript.github.io/MyScriptJS/api-reference/classes/AnalyzerRecognizer.html#method_doSimpleRecognition).<br>
230
+
To launch the recognition process, gather your input components and call the method [`doSimpleRecognition`](http://doc.myscript.com/MyScriptJS/1.0/reference/index.htmlclasses/AnalyzerRecognizer.html#method_doSimpleRecognition).<br>
231
231
Reminder: The `applicationKey` and the `hmacKey` are generated at the very beginning.<br>
232
232
The variable `instanceId` is the session identifier: It is used below to check that you are still working on the same session.
233
233
@@ -248,10 +248,10 @@ function doRecognition () {
248
248
249
249
### Get the result
250
250
251
-
Every [`doSimpleRecognition`](http://myscript.github.io/MyScriptJS/api-reference/classes/AnalyzerRecognizer.html#method_doSimpleRecognition) method returns [Promise](https://github.com/domenic/promises-unwrapping/blob/master/README.md), so you can directly access the output using resolve process. For every recognition type, the result contains the `instanceId` and the recognition document, here a [AnalyzerDocument](http://myscript.github.io/MyScriptJS/api-reference/classes/AnalyzerDocument.html).
251
+
Every [`doSimpleRecognition`](http://doc.myscript.com/MyScriptJS/1.0/reference/index.htmlclasses/AnalyzerRecognizer.html#method_doSimpleRecognition) method returns [Promise](https://github.com/domenic/promises-unwrapping/blob/master/README.md), so you can directly access the output using resolve process. For every recognition type, the result contains the `instanceId` and the recognition document, here a [AnalyzerDocument](http://doc.myscript.com/MyScriptJS/1.0/reference/index.htmlclasses/AnalyzerDocument.html).
252
252
For more information on output objects, please refer to the
253
-
[API Reference](http://myscript.github.io/MyScriptJS/api-reference/index.html) and
0 commit comments