• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Create a shortcut with two actions

Explorer ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

Hello everyone, it is possible to create a shortcut that has these two actions, "expand folder and lock the other layers", I created these shortcuts but separated and I already tried to use the history but it didn't work.

In the two prints I exemplified

TOPICS
Code , How to

Views

424

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jul 14, 2023 Jul 14, 2023

Please save the code below in a .jsfl file and test it. If it works, you can place this file in the commands folder and assign a shortcut to it.

 

var dom = fl.getDocumentDOM();
var tl = dom.getTimeline();
var currentLayerIndex = tl.currentLayer;
var currentLayer = tl.layers[currentLayerIndex];

if (currentLayer.layerType === "folder")
{
	tl.expandFolder(true);
	tl.setLayerProperty("locked", true, "all");
	tl.setLayerProperty("locked", false);
}

Votes

Translate

Translate
Community Expert ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

Hi.

 

You can save steps in the History panel as a command and assign a shortcut to the command.

image.png

 

If the sequence of steps is complex, you'll have to code a JSFL manually.

 

Please let us know if you need more details on how to follow these approaches.

 

Regards,

JC

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

Olá João,

I need these two actions to be in the same shortcut, I tried saving the action and converting it to the command, but it didn't work. I don't have that knowledge in JSFL.

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

What steps of the History were you using separately?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

This two steps on print:

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

Please save the code below in a .jsfl file and test it. If it works, you can place this file in the commands folder and assign a shortcut to it.

 

var dom = fl.getDocumentDOM();
var tl = dom.getTimeline();
var currentLayerIndex = tl.currentLayer;
var currentLayer = tl.layers[currentLayerIndex];

if (currentLayer.layerType === "folder")
{
	tl.expandFolder(true);
	tl.setLayerProperty("locked", true, "all");
	tl.setLayerProperty("locked", false);
}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

That it's!! Perfect! 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

LATEST

Obrigado João! 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

@JoãoCésar 

 

(steps marked with a red x can't be saved as a command.)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

Yeah, I know.

 

That screenshot was just a very quick example.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 14, 2023 Jul 14, 2023

Copy link to clipboard

Copied

ok

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines