Skip to content

Commit d8b48cf

Browse files
committed
add uncue actions and bugfix
1 parent f336627 commit d8b48cf

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

HELP.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ For additional help with Xpression commands, please reference [this guide](http:
1717
* Move sequencer focus to next item (DOWN)
1818
* Move sequencer focus to previous item (UP)
1919
* Ready item into a framebuffer layer (CUE)
20+
* Remove all cued items from the cued state (UNCUEALL)
21+
* Remove take item from the cued state (UNCUE)
2022
* Resume all layers in framebuffer (RESUME)
2123
* Resume layer in framebuffer (RESUME)
2224
* Set preview to take item (UPNEXT)

actions.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ module.exports = {
5454
this.LAYER_FIELD
5555
]
5656
},
57+
'UNCUEALL': { label: 'Remove all cued items from the cued state (UNCUEALL)' },
58+
'UNCUE': {
59+
label: 'Remove take item from the cued state (UNCUE)',
60+
options: [
61+
this.TAKEID_FIELD
62+
]
63+
},
5764
'RESUME': {
5865
label: 'Resume all layers in framebuffer (RESUME)',
5966
options: [

index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class instance extends instance_skel {
6767
cmd = `CLFB ${fb}`;
6868
break;
6969
case 'CLFB_L':
70-
cmd = `CLFB ${opt.takeID}:${fb}:${opt.layer}`;
70+
cmd = `CLFB ${fb}:${opt.layer}`;
7171
break;
7272
case 'CLRA':
7373
cmd = `CLRA`;
@@ -115,6 +115,12 @@ class instance extends instance_skel {
115115
case 'TAKE':
116116
cmd = `TAKE ${opt.takeID}:${fb}:${opt.layer}`;
117117
break;
118+
case 'UNCUEALL':
119+
cmd = `UNCUEALL`;
120+
break;
121+
case 'UNCUE':
122+
cmd = `UNCUE ${opt.takeID}`;
123+
break;
118124
case 'UP':
119125
cmd = `UP`;
120126
break;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rossvideo-xpression",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"api_version": "1.0.0",
55
"keywords": [
66
"Graphics"

0 commit comments

Comments
 (0)