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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,11 @@ To install the scripts as script cues, use the script "~/00 Import scripts to cu
18
18
19
19
To install the scripts to your user's Library folder, in "Script Libraries", I suggest you run the script "~/00 Import all to library.applescript" from the script editor. Select the base folder of the repository, and you can now quickly access any script. Within Qlab, call the script (probably from within a `tell application "Qlab" to tell front workspace` block) like so:
20
20
21
-
`tell script "01 Mixing Desk Programming/Choose Desk to program" to run`
21
+
`tell script "Mixing Desk Programming/Choose Desk to program" to run`
22
22
23
23
### User Defined Variables
24
24
25
-
Many scripts also contain User Defined Variables. With these, when you call the script within Qlab, you can declare these variables globally and set them from within Qlab. This is particularly useful for using the same script for different purposes: e.g. you could have 2 versions of `04 Fades/1 Create fade`, one which creates a fade down and one a fade up. The syntax for this would be as follows:
25
+
Many scripts also contain User Defined Variables. With these, when you call the script within Qlab, you can declare these variables globally and set them from within Qlab. This is particularly useful for using the same script for different purposes: e.g. you could have 2 versions of `Fades/Create fade`, one which creates a fade down and one a fade up. The syntax for this would be as follows:
26
26
27
27
```applescript
28
28
global userLevel, userPrefix
@@ -40,7 +40,7 @@ set userPrefix to "Fade down: "
40
40
41
41
Many of these variables will stay the same for your template from show to show - some others depend on the design. These are set from within Qlab, as the notes of a cue.
42
42
43
-
Using the example `03 Levels/Bump level`, the variables from Qlab are `audioChannelCount` and `minAudioLevel`.
43
+
Using the example `Levels/Bump level`, the variables from Qlab are `audioChannelCount` and `minAudioLevel`.
44
44
45
45
To set these variables, you must set as a User Defined Variable `variableCueListName`. This is the cue list that you have stored your notes cues in. I recommend using Memo cues. In this instance, you would name one cue `Output channel count` and the other `Min audio level`. You do not need numbers for those cues.
46
46
@@ -53,7 +53,7 @@ The total list of Qlab Note variables required for the entire script library is:
53
53
54
54
### Template cues
55
55
56
-
The current generation of scripts in `09 Routing` work using templates. This means you can quickly and easily set levels, crosspoints, etc. to multiple 'defaults' via a quick dialog box.
56
+
The current generation of scripts in `Routing` work using templates. This means you can quickly and easily set levels, crosspoints, etc. to multiple 'defaults' via a quick dialog box.
57
57
58
58
To use these, you must set `templateCueListName` and `templateGroupCueName` in User Defined Variables. It will then use every audio file in the group cue as an option, and copy the appropriate routing from there, up to the count of your "Output Channel Count" value.
0 commit comments