Skip to main content
Participant
March 19, 2025
質問

Hi i want to select only fill color but I am getting even stroke color is there any way to search on

  • March 19, 2025
  • 返信数 2.
  • 362 ビュー

Please tell me is there any way to select particular property

返信数 2

Community Expert
March 19, 2025

If you type "fill" in the Timeline Search Bar and then select only the layers you want to change, you can use the toolbar to change only the selected shapes. 

 

Unfortunately, you cannot add modifiers to the Timeline Search. A good feature request would be to be able to search for fill and color to eliminate the stroke colors from the timeline.

 

The only other option without scripting would be to open the Essential Graphics workspace, type color into the Timeline Search bar, and then drag all of the Fill/Color properties into the Essential Graphics panel.

Dan Ebberts
Community Expert
Community Expert
March 19, 2025

I'm not sure if this is what you're asking for:

var myLayer = app.project.activeItem.layer(1);
var myProperty = myLayer.property("Contents").property("Rectangle 1").property("Contents").property("Stroke 1").property("Color");
myProperty.selected = true;

 

Dan Ebberts
Community Expert
Community Expert
March 19, 2025

I'm sorry, you wanted Fill Color, not Stroke color:

var myLayer = app.project.activeItem.layer(1);
var myProperty = myLayer.property("Contents").property("Rectangle 1").property("Contents").property("Fill 1").property("Color")
myProperty.selected = true;