Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.

Scrubbing the timeline on/off

dg3duy
Collaborator

Scrubbing the timeline on/off

dg3duy
Collaborator
Collaborator

I am an animator and I am not used to use the keyboard shortcut to scrubbing the timeline.
I am looking for a keyboard shortcut to activate or deactivate setToolTo TimeDragger, click once to activate it and click again to deactivate it.
Thank you very much.

0 Likes
Reply
Accepted solutions (1)
329 Views
4 Replies
Replies (4)

Christoph_Schaedl
Mentor
Mentor

There is only the k shortcut to scrub.

----------------------------------------------------------------
https://linktr.ee/cg_oglu
0 Likes

dg3duy
Collaborator
Collaborator

something similar to this I'm looking for, but only change scrubb on and off, not change the way you see your options on the screen.
keys.gif

{
string $focus = `getPanel -withFocus`;
if ( `getPanel -to $focus` == "modelPanel") {
	string $mode = `modelEditor -q -displayAppearance $focus`; 
if ( $mode != "smoothShaded" ) {
    modelEditor -e -displayAppearance "smoothShaded" $focus;
                    storeLastAction( "restoreLastContext " + `currentCtx` );setToolTo TimeDragger; 

	}
else {
        SelectToolOptionsMarkingMenu;

    modelEditor -e -displayAppearance "wireframe" $focus;
    SelectToolOptionsMarkingMenuPopDown;
MarkingMenuPopDown;

     }
   }
}

 

0 Likes

dg3duy
Collaborator
Collaborator
Accepted solution
global int $x;

if ($x % 2)

setToolTo TimeDragger;

else

invokeLastAction;

$x++;

here is the solution!

 

0 Likes

dg3duy
Collaborator
Collaborator

here is the solution.

global int $x;

if ($x % 2)

setToolTo TimeDragger;

else

invokeLastAction;

$x++;

0 Likes