Giter Site home page Giter Site logo

aequery's Introduction

AEQuery

General purpose after effects scripting library.

Requirements

Adobe After Effects ExtendScript Toolkit or other text editor

Download/install

npm install aequery

If you are not using npm, you can download the latest version here

Then you can include it in your script

Import into your script:

#include 'path/to/aequery.js' // aequery is now available as aeq
// Disable all Camera lens blur effects in active comp
aeq( 'activecomp effect[matchName="ADBE Camera Lens Blur"]' ).attr( 'enabled', false )

or, if you are using browserify, typescript or similar:

var aeq = require( 'aequery' )

var comp = aeq.getActiveComp()

if (comp) {
	aeq.forEachLayer( comp, function ( layer ) {
		// Do something with layer
	})
}

Documentation

For documentation, visit aequery.aenhancers.com

Development

Make sure you have node and npm installed

Install gulp

sudo npm install -g gulp

# Clone the repository and enter the directory
git clone https://github.com/aenhancers/aequery.git
cd aequery

# Install npm dependencies
npm install

Gulp usage:

gulp # Builds it to the relevant places in the ScriptUI Folder
gulp watch # Will monitor it and  rebuild it real quick if anything changes

Contributing

Pull requests, bug reports and feature requests are welcome!

aequery's People

Contributors

fusepilot avatar klustre avatar rafikhan avatar rafikhan-so avatar runegan avatar utjduo avatar vaporstack avatar zlovatt avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.