Updated.
This commit is contained in:
parent
8cf92c0ed6
commit
ce733e3d80
1 changed files with 1 additions and 3 deletions
|
@ -76,9 +76,7 @@ To organize the instructions functionally, I'll group them into five categories:
|
|||
| HEAR _variable_ AS FILE | Returns a file uploaded by the user to be saved. | <pre>HEAR file AS FILE <br/> SAVE file AS "uploads/myfile.pdf" <br/> TALK "File uploaded and saved."</pre> |
|
||||
| HEAR _variable_ AS AUDIO | Returns an audio file uploaded by the user to be saved. | <pre>HEAR audio AS AUDIO <br/> SAVE audio AS "recordings/audiofile.mp3" <br/> TALK "Audio received and saved."</pre> |
|
||||
| INCLUDE file | Includes a file into .gbdialog. | <pre>INCLUDE "script.gbdialog" <br/> TALK "File included."</pre> |
|
||||
| UPLOAD file | Uploads a file to a storage blob, like Azure Storage. | <pre>UPLOAD " </pre> |
|
||||
|
||||
path/to/file.pdf" <br/> TALK "File uploaded to cloud storage."</pre> |
|
||||
| UPLOAD file | Uploads a file to a storage blob, like Azure Storage. | <pre>UPLOAD "path/to/file.pdf" <br/> TALK "File uploaded to cloud storage."</pre> |
|
||||
| DIR path | Returns a list of files in the specified directory. | <pre>files = DIR "uploads/" <br/> TALK "Files in directory: " + files.</pre> |
|
||||
| FILL | Fills data into a Word document to be exported as images. | <pre>FILL "template.docx", data <br/> TALK "Document filled and exported."</pre> |
|
||||
| SAVE _variable_ AS "path/file" | Saves the specified variable as a file at the given path. | <pre>SAVE file AS "path/to/save/file.pdf" <br/> TALK "File saved."</pre> |
|
||||
|
|
Loading…
Add table
Reference in a new issue