Page 1 of 1
New Anim Layer button
Posted: 26 May 2018, 13:13
by acrookedheart
I love creating and using Custom Panels.
The one Keystroke I can not locate is New Animation Layer. I can make it a shortcut, but that doesn't help with adding a button to the Custom Panel
Re: New Anim Layer button
Posted: 26 May 2018, 16:06
by Svengali
It may be that keystroke isn't available because the new layer needs a name???
What you can do instead is insert a type script's command line with the following GEORGE instruction (assume the name of your new layer will be NewLayer)
tv_LayerCreate NewLayer
you should follow that with a keystroke command:
Layer:Make Anim
Once created, the new layer can be renamed.
Sven
Re: New Anim Layer button
Posted: 27 May 2018, 19:47
by acrookedheart
thanks Sven, I'll give that a shot.
Re: New Anim Layer button
Posted: 27 May 2018, 21:32
by acrookedheart
Svengali wrote: ↑26 May 2018, 16:06
It may be that keystroke isn't available because the new layer needs a name???
What you can do instead is insert a type script's command line with the following GEORGE instruction (assume the name of your new layer will be
NewLayer)
tv_LayerCreate NewLayer
you should follow that with a keystroke command:
Layer:Make Anim
Once created, the new layer can be renamed.
Sven
That worked perfectly, thank you.