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
Copy file name to clipboardExpand all lines: docs/src/content/docs/actions/vscode.mdx
+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
@@ -94,7 +94,7 @@ message: <message>
94
94
95
95
## Set state
96
96
97
-
The `setState` action allows you to set a key/value pair in the extension state which can be accessed by other actions. You can use the state value in your demo steps by using the following `{STATE_<key>}` syntax.
97
+
The `setState` action allows you to set a key/value pair in the extension state which can be accessed by other actions. You can use the state value in your moves by using the following `{STATE_<key>}` syntax.
Copy file name to clipboardExpand all lines: docs/src/content/docs/features/overview-dashboard.mdx
+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
@@ -27,7 +27,7 @@ Open the Overview with the command `Demo Time: Overview` from the Command Palett
27
27
From the Overview you can:
28
28
29
29
- Start a demo or open the demo presenter view.
30
-
- Run a demo step-by-step or jump directly to a slide.
30
+
- Run a scene step-by-step or jump directly to a slide.
31
31
- Open the demo configuration editor for quick edits.
32
32
33
33
These actions are exposed as toolbar buttons inside the dashboard and can also be triggered via the demo actions and automation steps described elsewhere in the docs.
The extension has built-in variables which you can use in your demo steps. These variables are placeholders that get replaced with the actual value when the demo gets executed.
9
+
The extension has built-in variables which you can use in your moves. These variables are placeholders that get replaced with the actual value when the demo gets executed.
10
10
11
11
-`{DT_INPUT}`: The extension will ask you to provide a value for this variable when the demo gets executed.
12
12
-`{DT_CLIPBOARD}`: The value in your clipboard will be used for this variable.
@@ -16,7 +16,7 @@ The extension has built-in variables which you can use in your demo steps. These
16
16
17
17
### Request user input
18
18
19
-
You can use the `{DT_INPUT}` variable in your demo steps to request user input. When the demo gets executed, the extension will ask you to provide a value for this variable.
19
+
You can use the `{DT_INPUT}` variable in your moves to request user input. When the demo gets executed, the extension will ask you to provide a value for this variable.
20
20
21
21
<Codecode={`
22
22
{
@@ -29,7 +29,7 @@ You can use the `{DT_INPUT}` variable in your demo steps to request user input.
29
29
30
30
### Use clipboard content
31
31
32
-
Similar to the `{DT_INPUT}` variable, you can use the `{DT_CLIPBOARD}` variable in your demo steps to use the value in your clipboard.
32
+
Similar to the `{DT_INPUT}` variable, you can use the `{DT_CLIPBOARD}` variable in your moves to use the value in your clipboard.
33
33
34
34
<Codecode={`
35
35
{
@@ -42,7 +42,7 @@ Similar to the `{DT_INPUT}` variable, you can use the `{DT_CLIPBOARD}` variable
42
42
43
43
### Use state value
44
44
45
-
You can use the `{STATE_<key>}` variable in your demo steps to use the value of the state key which you set via the `setState` action.
45
+
You can use the `{STATE_<key>}` variable in your moves to use the value of the state key which you set via the `setState` action.
46
46
47
47
<Codecode={`
48
48
[
@@ -64,7 +64,7 @@ You can use the `{STATE_<key>}` variable in your demo steps to use the value of
64
64
65
65
## Define custom variables
66
66
67
-
You can define variables in a `variables.json` file in the `.demo` folder. Once you created the `variables.json` file and added variables/constants to it, you can use these variables in your demo steps by using curly braces `{variable_name}`.
67
+
You can define variables in a `variables.json` file in the `.demo` folder. Once you created the `variables.json` file and added variables/constants to it, you can use these variables in your demo moves by using curly braces `{variable_name}`.
68
68
69
69
### Example variables file
70
70
@@ -74,7 +74,7 @@ You can define variables in a `variables.json` file in the `.demo` folder. Once
74
74
lang="json"
75
75
title={`.demo/variables.json`} />
76
76
77
-
### Example usage in demo steps
77
+
### Example usage in moves
78
78
79
79
<Codecode={`
80
80
{
@@ -83,4 +83,4 @@ You can define variables in a `variables.json` file in the `.demo` folder. Once
0 commit comments