Grid Duplicator and Color Modifier – After Effects Script

This Adobe Illustrator script allows you to duplicate selected objects in a grid layout while providing options to assign custom duplicate counts and fill colors for each object. The script also offers flexible grid configuration, enabling you to either set manual grid dimensions (rows and columns with a specified margin) or let Illustrator automatically determine…

Conda Environment Manager – Python Script

Pythonimport tkinter as tk from tkinter import ttk, messagebox, filedialog import os import shutil from pathlib import Path import sys import subprocess from datetime import datetime class CondaEnvManager: def __init__(self, root): self.root = root self.root.title("Conda Environment Manager") self.root.geometry("1000×600") self.main_frame = ttk.Frame(self.root, padding="10") self.main_frame.grid(row=0, column=0, sticky="nsew") self.root.columnconfigure(0, weight=1) self.root.rowconfigure(0, weight=1) self.create_widgets() self.refresh_env_list() def create_widgets(self): # Control…

Exploring the Property Tree in Adobe After Effects Using ExtendScript

When working with Adobe After Effects, you may need to identify property names for specific elements within a layer. This can be a crucial step in scripting and automation. The following script provides a way to recursively walk through the property chain of selected layer(s) and outputs the match names and display names directly to…