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
- max= -Infinity by min=Infinity
- the line if (p.numKeys && ... by if (p.numKeys && p.selectedKeys.length>0) min=Math.min(min, p.keyTime(p.selectedKeys[0]));
- 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.