Quantcast
Viewing all articles
Browse latest Browse all 85594

Re: Re: Select Next Keyframe (in selected property) script

To jump to the last selected key:

 

$.global.script_doJumpToLastSelectedKey || (script_doJumpToLastSelectedKey = function script_doJumpToLastSelectedKey(){     var comp = app.project.activeItem, props, n, p, max=-Infinity;     if (comp instanceof CompItem){         props = comp.selectedProperties;         for (n=0; n<props.length; n++){             p = props[n];            if (p.numKeys && p.selectedKeys.length>0) max=Math.max(max, p.keyTime(p.selectedKeys[p.selectedKeys.length-1]));            };        if (-Infinity<max) comp.time = max;        };     return;     }); 
script_doJumpToLastSelectedKey();

 

For the first key instead, replace

  1. max= -Infinity by min=Infinity
  2. the line if (p.numKeys && ... by  if (p.numKeys && p.selectedKeys.length>0) min=Math.min(min, p.keyTime(p.selectedKeys[0]));
  3. the line if (-Infinity<max) comp.time = max; by if (min<Infinity) comp.time = min;

 

That's it. One last thing, lots of things in this post now, it starts to be a little bit messy, so please quote answered, and preferably the one for select current time keys, it might be of interest to other users. The other ones i'm not sure

 

Xavier.


Viewing all articles
Browse latest Browse all 85594

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>