forked from ReaTeam/ReaScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.xml
8797 lines (8622 loc) · 818 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<index version="1" commit="0015c2a01143fac7c272b099d1f1ae39c0b9454f" name="ReaTeam Scripts">
<category name="Cursor">
<reapack name="amagalma_Move edit cursor to next visible grid line.lua" type="script" desc="amagalma_Move edit cursor to next visible grid line">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Moves the edit cursor to the next grid line that is visible\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-06-30T23:21:30Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/5ad4189858a3a611d2d004318570e0007853bc26/Cursor/amagalma_Move%20edit%20cursor%20to%20next%20visible%20grid%20line.lua</source>
</version>
</reapack>
<reapack name="amagalma_Move edit cursor to previous visible grid line.lua" type="script" desc="amagalma_Move edit cursor to previous visible grid line">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Moves the edit cursor to the previous grid line that is visible\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-06-30T23:20:24Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/34cd46cc4d801d2cbef240f56c8d2f02673b2989/Cursor/amagalma_Move%20edit%20cursor%20to%20previous%20visible%20grid%20line.lua</source>
</version>
<version name="1.01" author="amagalma" time="2017-12-16T00:04:01Z">
<changelog><![CDATA[+ fix Reaper crash when running the action with the edit cursor at the project start]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/bcff55a55b86477f16b6703ed4a8c57604a999ae/Cursor/amagalma_Move%20edit%20cursor%20to%20previous%20visible%20grid%20line.lua</source>
</version>
</reapack>
<reapack name="cfillion_Copy current position to clipboard.lua" type="script" desc="Copy current cursor/playback position to clipboard">
<version name="1.0" author="cfillion" time="2016-10-04T23:08:08Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/118875073a1e0ca4ab202ee6212729fca2ccfa13/Cursor/cfillion_Copy%20current%20position%20to%20clipboard.lua</source>
</version>
<version name="1.0.1" author="cfillion" time="2016-10-07T06:16:07Z">
<changelog><![CDATA[disable creation of undo point]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/3c930c4d2d1f7b63e7c3ae0db83d5544447e99bd/Cursor/cfillion_Copy%20current%20position%20to%20clipboard.lua</source>
</version>
<version name="1.0.2" author="cfillion" time="2017-10-04T06:47:01Z">
<changelog><![CDATA[update to use my new cross-platform clipboard API function (SWS v2.9.5+)]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/ef2c8a5b96cd6c7f26212c670836514f39c0fe76/Cursor/cfillion_Copy%20current%20position%20to%20clipboard.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor ahead five seconds.lua" type="script" desc="Move edit cursor ahead five seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20ahead%20five%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor ahead one minute.lua" type="script" desc="Move edit cursor ahead one minute">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20ahead%20one%20minute.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor ahead one second.lua" type="script" desc="Move edit cursor ahead one second">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20ahead%20one%20second.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor ahead ten seconds.lua" type="script" desc="Move edit cursor ahead ten seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20ahead%20ten%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor ahead thirty seconds.lua" type="script" desc="Move edit cursor ahead thirty seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20ahead%20thirty%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor ahead two seconds.lua" type="script" desc="Move edit cursor ahead two seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20ahead%20two%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor back five seconds.lua" type="script" desc="Move edit cursor back five seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20back%20five%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor back one minute.lua" type="script" desc="Move edit cursor back one minute">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20back%20one%20minute.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor back one second.lua" type="script" desc="Move edit cursor back one second">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20back%20one%20second.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor back ten seconds.lua" type="script" desc="Move edit cursor back ten seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20back%20ten%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor back thirty seconds.lua" type="script" desc="Move edit cursor back thirty seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20back%20thirty%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor back two seconds.lua" type="script" desc="Move edit cursor back two seconds">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-01-18T20:57:05Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/010b7a52af573a3fdae2447b7e67427cd108bd55/Cursor/Lokasenna_Move%20edit%20cursor%20back%20two%20seconds.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor to start of first item in project.lua" type="script" desc="Move edit cursor to start of first item in project">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-03-31T12:39:43Z">
<changelog><![CDATA[Initial release]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/25714f25dfaa7a2ce2d9ecb4de63b41f7ea54eac/Cursor/Lokasenna_Move%20edit%20cursor%20to%20start%20of%20first%20item%20in%20project.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Move edit cursor to start of first item in selected tracks.lua" type="script" desc="Move edit cursor to start of first item in selected tracks">
<metadata>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.0" author="Lokasenna" time="2017-03-31T12:35:21Z">
<changelog><![CDATA[Initial release]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/dbfb8ce09c396bcf78cc688c3c0c71ef1bbb763c/Cursor/Lokasenna_Move%20edit%20cursor%20to%20start%20of%20first%20item%20in%20selected%20tracks.lua</source>
</version>
</reapack>
<reapack name="Place play cursor into view (when playing) or Center edit cursor (when stopped).eel" type="script" desc="amagalma_Place play cursor into view (when playing) or Center edit cursor (when stopped)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 If playing: positions the play cursor at the first sixth of the arrange view\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 If stopped: centers the edit cursor at the middle of the arrange view, if possible\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-10-07T13:15:48Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/c750f7d968f4aaa72711de64745449d6314c6c0c/Cursor/Place%20play%20cursor%20into%20view%20(when%20playing)%20or%20Center%20edit%20cursor%20(when%20stopped).eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor back by 1 frame (or 1 beat).eel" type="script" desc="Move edit cursor back by 1 frame (or 1 beat)">
<version name="0.2014.9.10" time="2015-12-02T21:24:29Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20back%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20back%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor forward by 1 frame (or 1 beat).eel" type="script" desc="Move edit cursor forward by 1 frame (or 1 beat)">
<version name="0.2014.9.10" time="2015-12-02T21:24:29Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20forward%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20forward%20by%201%20frame%20(or%201%20beat).eel</source>
</version>
</reapack>
<reapack name="spk77_Move edit cursor to start of current measure.eel" type="script" desc="Move edit cursor to start of current measure">
<version name="0.2014.9.26" time="2015-12-02T21:24:29Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20current%20measure.eel</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Cursor/spk77_Move%20edit%20cursor%20to%20start%20of%20current%20measure.eel</source>
</version>
</reapack>
</category>
<category name="Development">
<reapack name="amagalma_Find action or script name by its Command ID.lua" type="script" desc="amagalma_Find action or script name by its Command ID">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Returns the action/script name of the given ID\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Script gets information from ActionList.txt created by SWS/S&M: Dump action list (all but custom actions)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab The script calls this action to create the said file.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab You can run this script as many times as you want without the need to create ActionList.txt for two hours.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If ActionList.txt is older than two hours then you are prompted to update it\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-10-27T20:49:11Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/e7cbe0c66458db56fd582e124d40528aad624931/Development/amagalma_Find%20action%20or%20script%20name%20by%20its%20Command%20ID.lua</source>
</version>
</reapack>
<reapack name="cfillion_GFX Keyboard Inspector.lua" type="script" desc="GFX Keyboard Inspector">
<version name="1.0" author="cfillion" time="2017-06-09T21:48:23Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/8ec262f9480695aef743f25cb818a3c88dd3c431/Development/cfillion_GFX%20Keyboard%20Inspector.lua</source>
</version>
</reapack>
<reapack name="cfillion_Interactive ReaScript.lua" type="script" desc="Interactive ReaScript (iReaScript)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Interactive ReaScript (iReaScript)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This script simulates a {\field{\*\fldinst{HYPERLINK "https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop"}}{\fldrslt{\ul
REPL
}}}
shell for Lua ReaScript inside of REAPER, for quickly experimenting code and API functions.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Screenshot\par}
{\pard \ql \f0 \sa180 \li0 \fi0 https://i.imgur.com/RrGfulR.gif\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Main Features\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Autocompletion\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Code history\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Colored output\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Copy/Paste from clipboard\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Error catching\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Multiline input (functions, conditions...)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Pretty print return values\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Run actions (!command_id, !!midi_editor_action)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Scrolling\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Text selection\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Text wrapping for long lines\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Known Issues/Limitations\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Some errors cannot be caught (see https://forum.cockos.com/showthread.php?t=177319)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab This tool cannot be used to open a new GFX window\sa180\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Contributing\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Send patches at {\field{\*\fldinst{HYPERLINK "https://github.com/cfillion/reascripts"}}{\fldrslt{\ul
https://github.com/cfillion/reascripts
}}}
.\par}
}
]]></description>
<link rel="website" href="https://cfillion.ca">cfillion.ca</link>
<link rel="website" href="https://forum.cockos.com/showthread.php?t=177324">Forum Thread</link>
<link rel="screenshot">https://i.imgur.com/RrGfulR.gif</link>
<link rel="donation">https://www.paypal.me/cfillion</link>
</metadata>
<version name="0.1" author="cfillion" time="2016-05-25T00:25:33Z">
<changelog><![CDATA[Initial release]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/bab6dccc9dd0e64959a919e193fd33d06eafd4ad/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.2" author="cfillion" time="2016-06-08T03:06:35Z">
<changelog><![CDATA[+ enhance formatting of arrays containing nil values
+ implement Delete key
+ implement word movement keys (Shift+Left and Shift+Right)
+ imply the return statement by default
+ limit maximum depth when formatting tables
+ protect against overriding of built-in variables]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/7211142377827197c98a656217c8b16a0d556b46/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.3" author="cfillion" time="2016-07-15T02:34:49Z">
<changelog><![CDATA[+ added autocompletion with Tab key
+ added PageUp/PageDown keys to scroll faster
+ fix formatting of multiline text chunks
+ implement clipboard read/write with Ctrl+C and Ctrl+V (works best on OS X)
+ preserve current input and history on .clear
+ protect against invalid access on reaper/gfx tables (thanks to X-Raym)
+ set global `_` variable to the first return value of last statement
+ support multi-line statements]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/9386f5a783eb026a97af2c7cde1bdd6f6bc4ad0e/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.4" author="cfillion" time="2016-08-18T01:21:36Z">
<changelog><![CDATA[+ autocomplete partial matches
+ don't execute empty code input (v0.3 regression)
+ enhance formatting of string values
+ fix input of tildes
+ increase maximum buffer size to 2048 lines
+ limit maximum size of tables values when formatting
+ optimize layout by only computing new or modified text segments
+ preserve current input when using Ctrl+L shortcut
+ prevent cursor positon from affecting text position
+ remove reaper/gfx proxy variable workaround (requires REAPER v5.23 [t=177319])
+ rewrite drawing & scrolling code
+ wait at least one second before blinking the cursor]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/6bfdb4ee178087033c0a4ca7fa005c231dd53b43/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.4.1" author="cfillion" time="2016-10-07T06:24:44Z">
<changelog><![CDATA[+ fix auto-completion of exact matches
+ fix caret display in multiline input
+ improve how partially visible lines affect the scrollbar
+ remember docked state (use `gfx.dock(N)` to put in dock)]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/6c99cdaf8a1facf4b9c3bea1df4557e94c68b825/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.4.2" author="cfillion" time="2016-10-08T00:15:15Z">
<changelog><![CDATA[+ fix formatting of zero-indexed table
+ fix formatting of zero-sized (yet non-empty) tables
+ override global 'print' function
+ use braces instead of non-lua brackets for tables with numeric indexes]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/47168e1db8b06fc5b6df35196733d092f3f3fb5d/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.4.3" author="cfillion" time="2016-10-14T04:18:29Z">
<changelog><![CDATA[fix drawing of multiline input after code execution]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/b3c396e3ec5ee15e112466183a75de2b6b4a7758/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.5" author="cfillion" time="2016-12-13T03:26:51Z">
<changelog><![CDATA[add Copy/Paste/Clear/Dock/Close actions to the right click context menu
display errors using bold font
document the built-in functions and variables in .help
fix formatting of \t and \r in strings when they are followed by numbers
implement (fix) display of empty lines
remember window position, size and docked state
store every return values in _ global variable]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/ccfbf01a7cd4006676d11ae0b19dc8b3eb386f62/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.6" author="cfillion" time="2017-01-20T23:22:20Z">
<changelog><![CDATA[allow .clear to be recorded in the history
do not crash on clipboard read/write failure (eg. 32-bit windows)
don't evaluate command/actions while in a lua block
implement !ACTION for Main actions, !!ACTION for MIDI Editor actions
remove extra newline inserted when executing an empty command since v0.5]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/c29a701329b5a410f6edf81fbbf32468b5cf2574/Various/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.6.1" author="cfillion" time="2017-06-09T21:48:23Z">
<changelog><![CDATA[fix division by zero when wrapping lines starting with a zero-length character
fix invisible \t (tabs) on windows
fix ugly font on windows]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/8ec262f9480695aef743f25cb818a3c88dd3c431/Development/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.6.2" author="cfillion" time="2017-09-18T03:06:40Z">
<changelog><![CDATA[add "About iReaScript (F1)" context menu entry and shortcut (ReaPack v1.2+)
don't crash when pasting \r\n
don't display a completely blank line when an empty error string is given
paste on middle click
persist history between sessions
reimplement copy/paste using my new API functions (SWS v1.9.6+)
support non-string arguments to Lua's error function]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/3d72e8b23315b025a0110d3dc93b0caa1de34bf3/Development/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.7" author="cfillion" time="2017-10-06T01:36:40Z">
<changelog><![CDATA[add "Select all" action to the context menu (also Ctrl+A)
avoid clearing the clipboard
clear selection when pressing Escape
copy selected text instead of current input if non-empty
display table keys in alphabetical order
implement text selection!
paste from selection (if non-empty) on middle click
remove duplicate entries in history
select word under cursor on double click
set cursor to I-beam
sort by key alphabetically when displaying table values]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/132dfa46a87b34c121827263950c0c1e9e303a99/Development/cfillion_Interactive%20ReaScript.lua</source>
</version>
<version name="0.7.1" author="cfillion" time="2017-10-07T01:27:31Z">
<changelog><![CDATA[don't select to the buffer end when a partial line is diplayed at the bottom
fix crash when displaying table with mixed key types
fix length counting of tables containing mixed key types
use Lua-compatible syntax for displaying keys in tables]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/0af7959298aeade417103851322248ba2adb0d83/Development/cfillion_Interactive%20ReaScript.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Run last Lua script in debug mode.lua" type="script" desc="Run last Lua script in debug mode">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Gets the last script that was run via 'Run Lua script in debug mode' and attempts to open it in debug mode again; a replacement for Reaper's native action 'ReaScript: Run last ReaScript (EEL or Lua)', since scripts can't get that filename from REAPER.ini directly.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Script developers: Your script just needs to check if the global variable 'debug_mode' is true:\par}
{\pard \ql \f0 \sa180 \li0 \fi0 (near the top of your script) if debug_mode then ...set appropriate debug flags, etc... end\par}
}
]]></description>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.1.1" author="Lokasenna" time="2017-06-09T21:48:23Z">
<changelog><![CDATA[Name change for consistency]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/8ec262f9480695aef743f25cb818a3c88dd3c431/Development/Lokasenna_Run%20last%20Lua%20script%20in%20debug%20mode.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Run Lua script in debug mode.lua" type="script" desc="Run Lua script in debug mode">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Lets users open a compatible .lua script in debug mode, to assist in diagnosing errors, crashes, etc.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Script developers: Your script just needs to check if the global variable 'debug_mode' is true:\par}
{\pard \ql \f0 \sa180 \li0 \fi0 (near the top of your script) if debug_mode then ...set appropriate debug flags, etc... end\par}
}
]]></description>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="1.1.1" author="Lokasenna" time="2017-06-09T21:48:23Z">
<changelog><![CDATA[Name change for consistency]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/8ec262f9480695aef743f25cb818a3c88dd3c431/Development/Lokasenna_Run%20Lua%20script%20in%20debug%20mode.lua</source>
</version>
</reapack>
<reapack name="Lokasenna_Script Compiler.lua" type="script" desc="Script compiler">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 Simplifies the process of working with and distributing additional library files for Lua scripters, by scanning your script for a few specific commands and using them to copy the external libraries' contents directly into the base script.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 See the forum thread for a more detailed explanation.\par}
}
]]></description>
<link rel="website" href="http://forum.cockos.com/showthread.php?t=185264">Forum thread</link>
<link rel="website" href="http://forum.cockos.com/member.php?u=10417">Lokasenna's Website</link>
<link rel="donation">https://paypal.me/Lokasenna</link>
</metadata>
<version name="2.0" author="Lokasenna" time="2017-06-09T21:48:23Z">
<changelog><![CDATA[Better bug checking
Offers an alternative syntax for libraries that might be less cumbersome]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/8ec262f9480695aef743f25cb818a3c88dd3c431/Development/Lokasenna_Script%20Compiler.lua</source>
</version>
<version name="2.0.1" author="Lokasenna" time="2018-04-08T19:26:28Z">
<changelog><![CDATA[A few small bug fixes
Checking if the output folder was created is disabled, due to
the API function giving buggy return values
Refactored/reorganized the code for readability]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/0015c2a01143fac7c272b099d1f1ae39c0b9454f/Development/Lokasenna_Script%20Compiler.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes">
<reapack name="amagalma_Toggle active take volume envelope visible for selected item(s).lua" type="script" desc="amagalma_Toggle active take volume envelope visible for selected item(s)">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Toggles visibility of (active) take volume envelopes for the selected item(s)\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Does not create undo points by default. Easily changeable in the end of the script.\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-04-10T02:04:46Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/0ded24c2fb64a36e3859f1680a36991ed0c75e23/Envelopes/amagalma_Toggle%20active%20take%20volume%20envelope%20visible%20for%20selected%20item(s).lua</source>
</version>
<version name="1.01" author="amagalma" time="2017-04-10T18:21:31Z">
<changelog><![CDATA[+ made the action substantially faster when many items (>500) are selected]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/410851d4a904eb8d1c0152fa2f11b1331f0518f4/Envelopes/amagalma_Toggle%20active%20take%20volume%20envelope%20visible%20for%20selected%20item(s).lua</source>
</version>
<version name="1.02" author="amagalma" time="2017-04-11T20:39:04Z">
<changelog><![CDATA[+ fixed bug that would crop to active take when hiding empty envelope of first and active take in a multitake item]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/067a3bc0aec176f3c72518f11384d5fb60a1ac8c/Envelopes/amagalma_Toggle%20active%20take%20volume%20envelope%20visible%20for%20selected%20item(s).lua</source>
</version>
<version name="2.0" author="amagalma" time="2017-04-14T03:34:41Z">
<changelog><![CDATA[+ Complete re-write of the code. No more depending on buggy actions]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/dd000808cbff2b4a59bf5b98853e7c96a9a98f25/Envelopes/amagalma_Toggle%20active%20take%20volume%20envelope%20visible%20for%20selected%20item(s).lua</source>
</version>
<version name="2.01" author="amagalma" time="2017-04-14T09:49:06Z">
<changelog><![CDATA[+ small improvement]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/a25e50bbec36239f553872d6c8cc06d7ec021d87/Envelopes/amagalma_Toggle%20active%20take%20volume%20envelope%20visible%20for%20selected%20item(s).lua</source>
</version>
<version name="2.02" author="amagalma" time="2017-04-15T13:40:27Z">
<changelog><![CDATA[+ some optimizations]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/a5b9a036ea56651e3427f7bfae635f9eb2af654f/Envelopes/amagalma_Toggle%20active%20take%20volume%20envelope%20visible%20for%20selected%20item(s).lua</source>
</version>
</reapack>
<reapack name="amagalma_Toggle take volume envelope visible for all takes of all items in project.lua" type="script" desc="amagalma_Toggle active take volume envelope visible for all items in project">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Toggles visibility of take volume envelopes for all takes of all items in project\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Equivalent to Start+Shift+Hyphen ("Show/hide Clip Gain Line") in Pro Tools\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Does not create undo points by default. Easily changeable inside the script.\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-04-10T18:20:56Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/a210539e8cc95b65c1237cefa7d98043a015d9ae/Envelopes/amagalma_Toggle%20take%20volume%20envelope%20visible%20for%20all%20takes%20of%20all%20items%20in%20project.lua</source>
</version>
<version name="1.01" author="amagalma" time="2017-04-12T07:59:19Z">
<changelog><![CDATA[+ fixed bug that would crop to active take when hiding empty envelope of first and active take in a multitake item]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/4a94561684b24027415f1709821820cfddc5fa1c/Envelopes/amagalma_Toggle%20take%20volume%20envelope%20visible%20for%20all%20takes%20of%20all%20items%20in%20project.lua</source>
</version>
<version name="1.02" author="amagalma" time="2017-09-03T23:38:31Z">
<changelog><![CDATA[+ easier creation or not of undo points]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/c1b528c972956554613294d45b7b6b52fad7c236/Envelopes/amagalma_Toggle%20take%20volume%20envelope%20visible%20for%20all%20takes%20of%20all%20items%20in%20project.lua</source>
</version>
</reapack>
<reapack name="amagalma_Toggle volume envelope visibility for selected tracks or items depending on mouse position.lua" type="script" desc="amagalma_Toggle volume envelope visibility for selected tracks/items depending on mouse position">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Toggles volume envelope visibility for the selected tracks or items\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If mouse is over Arrange, then it toggles selected items' volume envelopes' visibility\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If mouse is over TCP, then it toggles selected tracks' volume envelopes' visibility\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Undo point is created if needed and is named accordingly\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-10-03T14:04:09Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/752fafa0f47dc808d44d6c887e8fd03391ee0a85/Envelopes/amagalma_Toggle%20volume%20envelope%20visibility%20for%20selected%20tracks%20or%20items%20depending%20on%20mouse%20position.lua</source>
</version>
<version name="1.001" author="amagalma" time="2017-10-03T14:14:25Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/eea2cdd88109439e3fdabb877c0d9600cd80ff22/Envelopes/amagalma_Toggle%20volume%20envelope%20visibility%20for%20selected%20tracks%20or%20items%20depending%20on%20mouse%20position.lua</source>
</version>
</reapack>
<reapack name="js_Envelope LFO generator and shaper.lua" type="script" desc="js_Envelope LFO generator and shaper.lua">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Description\par}
{\pard \ql \f0 \sa180 \li0 \fi0 LFO generator and shaper - Automation envelope version.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Draw fancy LFO curves in REAPER's automation envelopes.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Instructions\par}
{\pard \ql \f0 \sa180 \li0 \fi0 SELECTION OF TARGET ENVELOPE\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The script can insert LFOs into either 1) a selected automation item, or 2) the time selection of the underlying envelope.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 To insert an LFO into the time selection, select an envelope and deselect all automation items.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 To insert an LFO into an automation item, select a single automation item. If the time selection falls within the bounds of the selected automation item, the LFO will be inserted into only the selected part of the automation item.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 (The time selection and the target envelope or automation item can be changed while the script is running.)\par}
{\pard \ql \f0 \sa180 \li0 \fi0 DRAWING CURVES\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Leftclick in open space in the envelope drawing area to add an envelope node.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Shift + Leftdrag to add multiple envelope nodes.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Alt + Leftclick (or -drag) to delete nodes.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Rightclick on an envelope node to open a dialog box in which a precise custom value can be entered.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Move mousewheel while mouse hovers above node for fine adjustment.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Use a Ctrl modifier to edit all nodes simultaneously:\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Ctrl + Leftclick (or -drag) to set all nodes to the mouse Y position.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Ctrl + Rightclick to enter a precise custom value for all nodes.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Ctrl + Mousewheel for fine adjustment of all nodes simultaneously.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The keyboard shortcuts "a", "c" and "r" can be used to switch the envelope view between Amplitude, Center and Rate.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 VALUE AND TIME DISPLAY\par}
{\pard \ql \f0 \sa180 \li0 \fi0 The precise Rate, Amplitude or Center of the hot node, as well as the precise time position, can be displayed above the node.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Rightclick in open space in the envelope area to open a menu in which the Rate and time display formats can be selected.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 LOADING AND SAVING CURVES\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Right-click (outside envelope area) to open the Save/Load/Delete curve menu.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 One of the saved curves can be loaded automatically at startup. By default, this curve must be named "default".\par}
{\pard \ql \f0 \sa180 \li0 \fi0 FURTHER CUSTOMIZATION\par}
{\pard \ql \f0 \sa180 \li0 \fi0 Further customization is possible - see the instructions in the script's USER AREA.\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This include:\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Easily adding custom LFO shapes.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Specifying the resolution of LFO shapes' phase steps.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Specifying the resolution of the mousewheel fine adjustment.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Changing interface colors.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Changing the default curve name.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab etc...\sa180\par}
}
]]></description>
<link rel="website">http://forum.cockos.com/showthread.php?t=177437</link>
<link rel="screenshot">http://stash.reaper.fm/27661/LFO%20shaper.gif</link>
<link rel="donation">https://www.paypal.me/juliansader</link>
</metadata>
<version name="0.99" author="Xenakios (modded by juliansader)" time="2016-05-29T18:25:17Z">
<changelog><![CDATA[+ The MIDI editor version now available!!
+ Envelope area now resizeable (allowing finer resolution).
+ Alt-drag for quick delete of multiple nodes.
+ Accurate interpolation of Fast start, Fast end shapes.
+ Curve named "default" will be loaded on startup.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/ac7a6bbc7f639b2be101725d584c799ed3a93eaa/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.996" author="Xenakios (modded by juliansader)" time="2016-06-13T01:42:41Z">
<changelog><![CDATA[+ Mousewheel can be used for super fine adjustment of node values.
+ Rightclick in envelope area to set the LFO period to precise note lengths.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/99112cd9af039463a53ef98e1cd87a4ed4c986fd/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.997" author="Xenakios (modded by juliansader)" time="2016-06-13T06:33:53Z">
<changelog><![CDATA[+ Mousewheel can be used for super fine adjustment of node values.
+ Rightclick in envelope area to set the LFO period to precise note lengths.
+ Envelope value displayed above hotpoint.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/a988bdbf35fb979b2c0483c369e1a0f30e344367/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.998" author="Xenakios (modded by juliansader)" time="2016-06-13T17:13:26Z">
<changelog><![CDATA[+ Changed interpolation between nodes from linear to parabolic.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/25650c7887a8db20706f2431e2bf9e9def87e96d/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.999" author="Xenakios / juliansader" time="2016-06-13T19:00:18Z">
<changelog><![CDATA[+ Changed Rate interpolation between nodes from linear to parabolic.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/daf6f357dcdfe89e80b76d4c5329fd3535964584/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="0.9999" author="Xenakios / juliansader" time="2016-06-15T22:00:34Z">
<changelog><![CDATA[+ Timebase: Beats option]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/934edcd1b8a8363a534bbb473015d94432480257/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.0" author="Xenakios / juliansader" time="2016-06-16T18:26:58Z">
<changelog><![CDATA[+ Points at edges of time selection will be preserved, to avoid affecting envelope outside time selection.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/f0a190014eebd9927abcb10718cee011c4f043e5/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.01" author="Xenakios / juliansader" time="2016-06-16T20:50:44Z">
<changelog><![CDATA[+ Fixed regression in handling of take envelopes.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/d7af60aabe5a56230171f0c7ee333c4407c534c9/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.02" author="Xenakios / juliansader" time="2016-06-17T01:06:53Z">
<changelog><![CDATA[+ Envelope outside time selection will be preserved by default, even if there are no pre-existing points at the edges of the time selection.
+ Leftclick only adds a single node point; Shift + Left-drag to add multiple points.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/7e644cac32b84f32c466fc7a2af07322aa804cc8/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.03" author="Xenakios / juliansader" time="2016-06-18T07:21:14Z">
<changelog><![CDATA[+ Fixed regression in fade out.
+ Added "Reset curve" option in Save/Load menu.
+ Added optional display of hotpoint time position (in any of REAPER's time formats).
+ Improved sensitivity of nodes at edges of envelope drawing area.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/9bf463249430e8bc1b7e880dd40f5176c1707eae/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.04" author="Xenakios / juliansader" time="2016-06-23T10:21:13Z">
<changelog><![CDATA[+ User can specify the number of phase steps in standard LFO shapes, which allows nearly continuous phase changes.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/5a28621e99fbe2164dd0fd90cc8397d2c576457d/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.10" author="juliansader" time="2017-01-18T22:23:21Z">
<changelog><![CDATA[+ Header info updated to ReaPack 1.1 format.
+ Keyboard shortcuts "a", "c" and "r" for quick switching between GUI views.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/a5ca9f513b978f720cfc5408adc8664ccba57087/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.11" author="juliansader" time="2017-03-02T20:12:34Z">
<changelog><![CDATA[+ Fixed bug in loading default curves with customized names (different from "default").]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/a04bef566d301c6580a67cd8be05e76acb7bd684/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.20" author="juliansader" time="2017-08-06T21:35:41Z">
<changelog><![CDATA[+ GUI window will open at last-used screen position.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/8f8692dedd519a6b6746e6f4b8f102c5aab62262/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.30" author="juliansader" time="2017-08-09T15:20:42Z">
<changelog><![CDATA[+ Compatible with automation items.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/27083af7c81e68ca364a7767e547dc902aa737de/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.31" author="juliansader" time="2017-08-09T16:01:57Z">
<changelog><![CDATA[+ LFO can be limited to time selection within automation item.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/58a79904e562ee62411e5bf03780a0fd75d55520/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.32" author="juliansader" time="2017-08-09T16:44:09Z">
<changelog><![CDATA[+ LFO can be limited to time selection within automation item.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/b75ccf29c6506b306ea522b3079618ab4c12707d/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.40" author="juliansader" time="2017-08-09T19:39:03Z">
<changelog><![CDATA[+ LFO can be limited to time selection within automation item.
+ Undo points more informative.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/ebf3fa2035f32b14a2eb7e8ab69389bbc5631898/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.41" author="juliansader / Xenakios" time="2017-08-15T13:02:57Z">
<changelog><![CDATA[+ Checks REAPER version and SWS installed.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/cfa4bc67a0608393385e55c735a7db0e25dac281/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.50" author="juliansader / Xenakios" time="2017-10-03T19:00:42Z">
<changelog><![CDATA[+ Keep nodes in order while moving hot node.]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/c4441334dd9e28a4a863c395d124b30afee7f9ff/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
<version name="1.51" author="juliansader / Xenakios" time="2017-10-03T21:26:46Z">
<changelog><![CDATA[+ Keep edge nodes in order when inserting new nodes. ]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/9ae2a9c604f420f8a803f18a99b32d2ee62a54ba/Envelopes/js_Envelope%20LFO%20generator%20and%20shaper.lua</source>
</version>
</reapack>
<reapack name="spk77_Adjust volume envelope point at mouse cursor via mousewheel.lua" type="script" desc="Adjust volume envelope point at mouse cursor via mousewheel">
<version name="0.2015.9.2" time="2015-12-02T21:24:29Z">
<changelog><![CDATA[2-Sep-2015
added support for all track envelopes]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/fc999f3d4f53c79e150bb3b101e9b0bb370f53b5/Envelopes/spk77_Adjust%20volume%20envelope%20point%20at%20mouse%20cursor%20via%20mousewheel.lua</source>
</version>
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Envelopes/spk77_Adjust%20volume%20envelope%20point%20at%20mouse%20cursor%20via%20mousewheel.lua</source>
</version>
</reapack>
<reapack name="spk77_Compress or expand selected envelope points.lua" type="script" desc="Compress or expand selected envelope points">
<version name="1.0" author="spk77" time="2015-12-03T07:38:56Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/b4d7fad8010bdd39125dae5435a7126b2fa46058/Envelopes/spk77_Compress%20or%20expand%20selected%20envelope%20points.lua</source>
</version>
</reapack>
<reapack name="spk77_Create envelope points from FX param values.lua" type="script" desc="Create envelope points from FX parameter values">
<version name="0.1" author="spk77" time="2016-06-19T17:19:04Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/97cbac48ac6f15eca18ea12244e1d3743a5725a9/Envelopes/spk77_Create%20envelope%20points%20from%20FX%20param%20values.lua</source>
</version>
</reapack>
<reapack name="spk77_Delete track FX envelope points in time selection (last focused FX) .lua" type="script" desc="Delete track FX envelope points in time selection (for last focused FX)">
<version name="0.1" author="spk77" time="2016-07-03T19:31:41Z">
<changelog><![CDATA[+ Initial Release]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/29bff0f595e6b6fd889af8c0a4ca83f4b613ef6c/Envelopes/spk77_Delete%20track%20FX%20envelope%20points%20in%20time%20selection%20(last%20focused%20FX)%20.lua</source>
</version>
<version name="0.2" author="spk77" time="2016-07-03T19:49:38Z">
<changelog><![CDATA[+ fixed function name]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/5436bdbf286281e918f7853902212f128d2e57c9/Envelopes/spk77_Delete%20track%20FX%20envelope%20points%20in%20time%20selection%20(last%20focused%20FX)%20.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes/Automation Items">
<reapack name="amagalma_Insert pooled instances of one automation item in time selection for selected tracks and selected envelope.lua" type="script" desc="amagalma_Insert pooled instances of one automation item in time selection for selected tracks and selected envelope">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Inserts automation items in time selection for the selected tracks and selected envelope\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab There must be a selected envelope and a time selection set for the script to work\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab If no other tracks are selected, it inserts an AI in the time selection of the selected envelope\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Smart undo point creation\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" author="amagalma" time="2017-10-03T00:46:44Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/93043ae9c9ca6b894b8afb46184372541b926502/Envelopes/Automation%20Items/amagalma_Insert%20pooled%20instances%20of%20one%20automation%20item%20in%20time%20selection%20for%20selected%20tracks%20and%20selected%20envelope.lua</source>
</version>
<version name="1.01" author="amagalma" time="2017-10-03T12:59:02Z">
<changelog><![CDATA[+ undo point creation improvement]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/2fd671190b3eae2cbaa3bfee33d7b133c8fa106e/Envelopes/Automation%20Items/amagalma_Insert%20pooled%20instances%20of%20one%20automation%20item%20in%20time%20selection%20for%20selected%20tracks%20and%20selected%20envelope.lua</source>
</version>
<version name="1.11" author="amagalma" time="2017-10-06T10:24:40Z">
<changelog><![CDATA[+ work-around for Reaper bug: https://forum.cockos.com/showthread.php?t=196794
+ added setting inside the script to remove or keep time selection after action end
+ script header correction]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/692a1a6dfc3c6a759342611839674157c99a696b/Envelopes/Automation%20Items/amagalma_Insert%20pooled%20instances%20of%20one%20automation%20item%20in%20time%20selection%20for%20selected%20tracks%20and%20selected%20envelope.lua</source>
</version>
<version name="1.12" author="amagalma" time="2017-10-06T16:45:07Z">
<changelog><![CDATA[+ fixed script bug (deleting selected env points) created by the work-around of a Reaper bug]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/c5490d439297699615e9796062a82f05ac7703b6/Envelopes/Automation%20Items/amagalma_Insert%20pooled%20instances%20of%20one%20automation%20item%20in%20time%20selection%20for%20selected%20tracks%20and%20selected%20envelope.lua</source>
</version>
<version name="1.13" author="amagalma" time="2017-10-24T13:35:09Z">
<changelog><![CDATA[+ removed the work-around for a previous Reaper bug (this version requires Reaper v5.60+)
+ re-introduced smart undo point creation, which was removed because of previous Reaper bug work-around]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/44daed201b401fe30313121b868d97e528db8388/Envelopes/Automation%20Items/amagalma_Insert%20pooled%20instances%20of%20one%20automation%20item%20in%20time%20selection%20for%20selected%20tracks%20and%20selected%20envelope.lua</source>
</version>
</reapack>
<reapack name="amagalma_Select all visible pooled instances of selected automation items in project.lua" type="script" desc="amagalma_Select all visible pooled instances of selected automation items in project">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Selects all the pooled duplicates of the selected automation items across all tracks\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Automation items must exist in the same kind of envelope\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" time="2017-10-06T17:07:02Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/7e0f98acb4e9b801556307331dabf1b869dd0a51/Envelopes/Automation%20Items/amagalma_Select%20all%20visible%20pooled%20instances%20of%20selected%20automation%20items%20in%20project.lua</source>
</version>
<version name="1.01" time="2017-10-06T18:04:20Z">
<changelog><![CDATA[+ fixed bug caused by typo]]></changelog>
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/d550468f5a264300637efd896164747c53afc0ab/Envelopes/Automation%20Items/amagalma_Select%20all%20visible%20pooled%20instances%20of%20selected%20automation%20items%20in%20project.lua</source>
</version>
</reapack>
<reapack name="cfillion_Automation item selection bundle.lua" type="script" desc="Automation item selection bundle">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Automation item selection bundle\par}
{\pard \ql \f0 \sa180 \li0 \fi0 This package provides many actions for selecting or unselecting automation items in the selected envelope lane. See the Contents tab for the list and for the exact name of the actions.\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Actions for selecting and moving to the next or previous AIs\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Actions for preserving the current selection\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Actions for cycling through the AIs in the selected pool\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Actions for selecting or unselecting all AIs, AIs in the selected pool, under the edit cursor and under the mouse cursor\sa180\par}
}
]]></description>
<link rel="website" href="https://cfillion.ca">cfillion's website</link>
<link rel="website" href="https://github.com/reaper-oss/sws/issues/899">Original request</link>
<link rel="donation">https://www.paypal.com/cgi-bin/webscr?business=T3DEWBQJAV7WL&cmd=_donations&currency_code=CAD&item_name=ReaScript%3A+Automation+item+selection+bundle</link>
</metadata>
<version name="1.0" author="cfillion" time="2017-10-01T00:13:40Z">
<source main="main" file="cfillion_Select and move to next automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to next automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/55b639e627d1147cb6b8ed86de2d5e4eb7e88260/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
</version>
<version name="1.1" author="cfillion" time="2018-01-18T15:57:41Z">
<changelog><![CDATA[Add actions for unselecting all automations items (+ in pool)
Add actions selecting/adding to selection the automation item under edit and mouse cursor]]></changelog>
<source main="main" file="cfillion_Select and move to next automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to next automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add all automation items under edit cursor to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add all automation items under mouse cursor to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items under edit cursor.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items under mouse cursor.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items under edit cursor.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items under mouse cursor.lua">https://github.com/ReaTeam/ReaScripts/raw/57bc7e15454172d11cdf71c0ca182044522703b1/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
</version>
<version name="1.2" author="cfillion" time="2018-01-25T18:57:26Z">
<changelog><![CDATA[Add "all tracks" variants to select/unselect all scripts
Improve "under mouse cursor" variants to work over any envelope]]></changelog>
<source main="main" file="cfillion_Select and move to next automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to next automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add all automation items under edit cursor to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add all automation items under mouse cursor to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items under edit cursor.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/4fca84a34b116413bf075af94453d45e1fff3c0e/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
</version>
<version name="1.3" author="cfillion" time="2018-01-25T23:58:07Z">
<changelog><![CDATA[Add selection actions for AIs inside time selection]]></changelog>
<source main="main" file="cfillion_Select and move to next automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to next automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select and move to previous automation item in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add next automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add previous automation item in pool to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add all automation items under edit cursor to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Add all automation items under mouse cursor to selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items in pool (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items under edit cursor.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items under edit cursor (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items under mouse cursor (any envelope).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items in time selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Select all automation items in time selection (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items in pool.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items in pool (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items under edit cursor.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items under edit cursor (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items under mouse cursor (any envelope).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items in time selection.lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
<source main="main" file="cfillion_Unselect all automation items in time selection (all tracks).lua">https://github.com/ReaTeam/ReaScripts/raw/2924d5a1b860744dafc24999b34c293baad448dd/Envelopes/Automation%20Items/cfillion_Automation%20item%20selection%20bundle.lua</source>
</version>
</reapack>
<reapack name="cfillion_Enable or disable automation item loop.lua" type="script" desc="Enable or disable automation item loop">
<metadata>
<link rel="website" href="https://cfillion.ca">cfillion.ca</link>
<link rel="donation">https://www.paypal.com/cgi-bin/webscr?business=T3DEWBQJAV7WL&cmd=_donations&currency_code=CAD&item_name=ReaScript%3A+Enable+or+disable+automation+item+loop</link>
</metadata>
<version name="1.0" author="cfillion" time="2018-01-19T19:28:31Z">
<source main="main" file="cfillion_Enable automation item loop.lua">https://github.com/ReaTeam/ReaScripts/raw/7e3228d727744b7ec9406c91f6f295f72f4828b4/Envelopes/Automation%20Items/cfillion_Enable%20or%20disable%20automation%20item%20loop.lua</source>
<source main="main" file="cfillion_Disable automation item loop.lua">https://github.com/ReaTeam/ReaScripts/raw/7e3228d727744b7ec9406c91f6f295f72f4828b4/Envelopes/Automation%20Items/cfillion_Enable%20or%20disable%20automation%20item%20loop.lua</source>
</version>
</reapack>
<reapack name="cfillion_Move right edge of selected automation items to end of time selection.lua" type="script" desc="Move right edge of selected automation items to end of time selection">
<metadata>
<link rel="website" href="https://cfillion.ca">cfillion.ca</link>
<link rel="donation">https://www.paypal.com/cgi-bin/webscr?business=T3DEWBQJAV7WL&cmd=_donations&currency_code=CAD&item_name=ReaScript%3A+Move+right+edge+of+selected+automation+items+to+end+of+time+selection</link>
</metadata>
<version name="1.0" author="cfillion" time="2018-01-19T16:50:54Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/1d831d29f82cb92cb9eff3354d61d51347798ab1/Envelopes/Automation%20Items/cfillion_Move%20right%20edge%20of%20selected%20automation%20items%20to%20end%20of%20time%20selection.lua</source>
</version>
</reapack>
<reapack name="cfillion_Split selected automation items at project markers and regions.lua" type="script" desc="Split selected automation items at markers and/or regions">
<metadata>
<link rel="website" href="https://cfillion.ca">cfillion.ca</link>
<link rel="donation">https://www.paypal.com/cgi-bin/webscr?business=T3DEWBQJAV7WL&cmd=_donations&currency_code=CAD</link>
</metadata>
<version name="1.0" author="cfillion" time="2018-01-29T03:24:15Z">
<source main="main" file="cfillion_Split selected automation items at markers and regions.lua">https://github.com/ReaTeam/ReaScripts/raw/f21c55a76c1635c54c0382e5009e7d0a70fe15a9/Envelopes/Automation%20Items/cfillion_Split%20selected%20automation%20items%20at%20project%20markers%20and%20regions.lua</source>
<source main="main" file="cfillion_Split selected automation items at markers.lua">https://github.com/ReaTeam/ReaScripts/raw/f21c55a76c1635c54c0382e5009e7d0a70fe15a9/Envelopes/Automation%20Items/cfillion_Split%20selected%20automation%20items%20at%20project%20markers%20and%20regions.lua</source>
<source main="main" file="cfillion_Split selected automation items at regions.lua">https://github.com/ReaTeam/ReaScripts/raw/f21c55a76c1635c54c0382e5009e7d0a70fe15a9/Envelopes/Automation%20Items/cfillion_Split%20selected%20automation%20items%20at%20project%20markers%20and%20regions.lua</source>
</version>
</reapack>
<reapack name="Select all visible synchronous pooled instances of selected automation items across tracks.lua" type="script" desc="amagalma_Select all visible synchronous pooled instances of selected automation items across tracks">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto
{\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Selects all the pooled duplicates of the selected automation items across all tracks\par}
{\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Automation items must exist in the same kind of envelope\sa180\par}
}
]]></description>
</metadata>
<version name="1.0" time="2017-10-06T18:53:30Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/58810d51ca0b19b565118b6173b0db01d05dc295/Envelopes/Automation%20Items/Select%20all%20visible%20synchronous%20pooled%20instances%20of%20selected%20automation%20items%20across%20tracks.lua</source>
</version>
</reapack>
</category>
<category name="Envelopes/Takes">
<reapack name="spk77_Copy take mute envelope from selected take to other takes in same group.lua" type="script" desc="Copy take mute envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20mute%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Copy take pan envelope from selected take to other takes in same group.lua" type="script" desc="Copy take pan envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20pan%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Copy take pitch envelope from selected take to other takes in same group.lua" type="script" desc="Copy take pitch envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20pitch%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Copy take volume envelope from selected take to other takes in same group.lua" type="script" desc="Copy take volume envelope from selected take to other takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Copy%20take%20volume%20envelope%20from%20selected%20take%20to%20other%20takes%20in%20same%20group.lua</source>
</version>
</reapack>
<reapack name="spk77_Create take mute envelope from active take to other takes in item.eel" type="script" desc="Create take mute envelope from active take to other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20mute%20envelope%20from%20active%20take%20to%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take pan envelope from active take to other takes in item.eel" type="script" desc="Create take pan envelope from active take to other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20pan%20envelope%20from%20active%20take%20to%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take pan envelope from take pan.eel" type="script" desc="Create take pan envelope from take pan">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20pan%20envelope%20from%20take%20pan.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take pitch envelope from active take in other takes in item.eel" type="script" desc="Create take pitch envelope from active take in other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20pitch%20envelope%20from%20active%20take%20in%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Create take volume envelope from active take to other takes in item.eel" type="script" desc="Create take volume envelope from active take to other takes in item">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Create%20take%20volume%20envelope%20from%20active%20take%20to%20other%20takes%20in%20item.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take mute envelope source to active takes in same group.eel" type="script" desc="Paste stored take mute envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20mute%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take mute envelope source to active takes in selected items.eel" type="script" desc="Paste stored take mute envelope to active takes in selected items">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20mute%20envelope%20source%20to%20active%20takes%20in%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pan envelope source to active takes in same group.eel" type="script" desc="Paste stored take pan envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pan%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pan envelope source to active takes in selected items.eel" type="script" desc="Paste stored take pan envelope to active takes in selected items">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pan%20envelope%20source%20to%20active%20takes%20in%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pitch envelope source to active takes in same group.eel" type="script" desc="Paste stored take pitch envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pitch%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take pitch envelope source to active takes in selected items.eel" type="script" desc="Paste stored take pitch envelope to active takes in selected items">
<version name="1.0" author="spk77" time="2015-12-06T06:55:53Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/773800f5416237e7b2bae44b71fe435a62a85b9b/Envelopes/Takes/spk77_Paste%20stored%20take%20pitch%20envelope%20source%20to%20active%20takes%20in%20selected%20items.eel</source>
</version>
</reapack>
<reapack name="spk77_Paste stored take vol envelope source to active takes in same group.eel" type="script" desc="Paste stored take vol envelope to active takes in same group">
<version name="1.0" author="spk77" time="2015-12-06T07:26:58Z">
<source main="main">https://github.com/ReaTeam/ReaScripts/raw/404c44c76bc65a1951d7f6fc773ab8c136c71bfe/Envelopes/Takes/spk77_Paste%20stored%20take%20vol%20envelope%20source%20to%20active%20takes%20in%20same%20group.eel</source>