diff --git a/book/chapter-05-gbdialog-reference.md b/book/chapter-05-gbdialog-reference.md index 3d887dc6..e950f7b1 100644 --- a/book/chapter-05-gbdialog-reference.md +++ b/book/chapter-05-gbdialog-reference.md @@ -44,7 +44,6 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | GO TO [number,] dialogName | Transfers the conversation to a next dialog for the specificed number or as last command, transfers the context to this dialog. | | SEE CAPTION OF _url_ AS _variable_ | Extracts an caption, using a pre-trained neural network, from a image. | | SEE TEXT OF _url_ AS _variable_ | Extracts text from the image in a OCR (Optical Character Recognition) feature. | -| SET HTTP PASSWORD = _value_ | Defines the HTTP password to be used to next GET call. | | * data = SELECT a, SUM(b) AS b FROM data GROUP BY a | Use SQL to manipulate a data variable returned from FIND or an array | _variable_ = CHART "pie", data| Generates a chart from data. | | * file = data AS IMAGE| Converts a two dimension array into an image file, ready to be used with SAVE AS or SEND FILE.| | * page = GET PAGE _url_ | Web automation retrival of a web page.| @@ -53,6 +52,8 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | * CLICK page, cssSelector | Clicks on an element inside the web page being automated by General Bots. | | * DOWNLOAD | | +* = Work in progress. + ### Options | Instruction / Usage | Description | @@ -60,12 +61,12 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | SET HTTP HEADER _key = _value_ | Defines an HTTP header to be used to next GET call. | | SET HTTP USERNAME = _value_ | Defines the HTTP username to be used to next GET call. | | SET HTTP PASSWORD = _value_ | Defines the HTTP password to be used to next GET call. | -| SET HEAR ON "mobile"| | +| * SET HEAR ON "mobile"| | | SET MAX LINES _value_ | | | SET SCHEDULE "2 * * * * *" | | | SET LANGUAGE _value_ | | -| set translator [ON|OFF]| | -| set whole word [TRUE|FALSE]| | +| SET TRANSLATOR [ON or OFF]| | +| SET WHOLE WORD [TRUE or FALSE]| | * = Work in progress.