We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba5012c commit 304d697Copy full SHA for 304d697
keyReverse.jsx
@@ -1,11 +1,13 @@
1
//ReverseKeys just does what it says is does - reverses keyframes
2
//Just select a bunch of keyframes and the script will reverse them at the playhead
3
4
+//v0.1 - 25.05.2015
5
+
6
//CC-BY, Nik Ska, 2015
7
-var reverseKeys = this;
8
+keyReverse = this;
9
-reverseKeys.go = function() {
10
+keyReverse.go = function() {
11
var activeComp = app.project.activeItem;
12
if(activeComp && activeComp instanceof CompItem){
13
var sel = activeComp.selectedLayers;
@@ -60,5 +62,5 @@ reverseKeys.go = function() {
60
62
}
61
63
64
-reverseKeys.go();
65
+keyReverse.go();
66
0 commit comments