Search found 13 matches

by drockne
March 7th, 2014, 9:47 am
Forum: Scripts Discussion
Topic: Controlling aerender via Scripting
Replies: 2
Views: 11511

Re: Controlling aerender via Scripting

I went through a similar process trying to figure this out. What I landed was creating a .command file like you did, saving it, then running a command line command to give that .command file execution permissions. Then doing a second command line command to run that file. It's a little convoluted, b...
by drockne
July 18th, 2013, 12:39 pm
Forum: Script requests
Topic: Lighten layers based on distance from camera. Fog?
Replies: 2
Views: 11639

Re: Lighten layers based on distance from camera. Fog?

Sounds like you need an expression that calculates the distance in 3d space from the camera to the layer in question. Hopefully this equation helps you: Define your two points. Point 1 at (x1, y1, z1) and Point 2 at (x2, y2, z2). xd = x2-x1 yd = y2-y1 zd = z2-z1 Distance = SquareRoot(xd*xd + yd*yd +...
by drockne
July 18th, 2013, 12:22 pm
Forum: Script requests
Topic: HUD over Comp (not an "Ironman-esq" design hud)
Replies: 1
Views: 8281

Re: HUD over Comp (not an "Ironman-esq" design hud)

I don't think there's any good way to implement this in the way you'd like without altering AE itself, in which case Adobe feature request is where you'd want to take it. That said, if you wanted to see property values of an object, you could create a text layer and tie it to that property with an e...
by drockne
April 12th, 2013, 12:37 pm
Forum: Script requests
Topic: AE Populate Template Script
Replies: 1
Views: 8242

Re: AE Populate Template Script

Might want to check out Comps from Spreadsheets, located at http://aescripts.com/

I'm not sure if it has exactly the functionality you need, but might work.


;-)
by drockne
March 26th, 2013, 1:03 pm
Forum: Scripts Discussion
Topic: Applescript?
Replies: 4
Views: 12813

Re: Applescript?

If your second method is failing inside after effects with an expected ";" error are you sure that the issue is with your applescript launcher and not the script you are trying to launch? That sounds like the kind of issue you'd run into if there was a syntax issue with the JSX script. I t...
by drockne
March 19th, 2013, 6:57 am
Forum: Script requests
Topic: Precomp, import, replace, replace precomp - Please!
Replies: 1
Views: 8193

Re: Precomp, import, replace, replace precomp - Please!

Might want to check out Comps from Spreadsheets, located at http://aescripts.com/

I'm not sure if it has exactly the functionality you need, but might work.
by drockne
February 25th, 2013, 8:16 am
Forum: Scripts Discussion
Topic: Script for Watch Folder Automation
Replies: 8
Views: 22425

Re: Script for Watch Folder Automation

There are two PDF's from Adobe that cover most of what there is to know about scripting with aftereffects. The last link shows you how to launch an AErender node from the command line. Basically what I ended up doing was writing a text file that had my command line command in it, saving it as a '.co...
by drockne
February 21st, 2013, 12:20 pm
Forum: Scripts Discussion
Topic: Script for Watch Folder Automation
Replies: 8
Views: 22425

Re: Script for Watch Folder Automation

Personally, I've never had much luck with watch folders. It seems that you need to do a full collect files process for it to work. Maybe the issue isn't your text file but instead the fact that you aren't collecting footage files? I don't use watch folders, instead I have a script that writes a comm...
by drockne
February 19th, 2013, 7:57 am
Forum: Scripts Discussion
Topic: Script for Watch Folder Automation
Replies: 8
Views: 22425

Re: Script for Watch Folder Automation

This might be a silly question, but why do you need the text file? Won't your AE file have all the needed render settings? Also if your project doesn't have any footage, why does it need to be collected?
by drockne
January 30th, 2013, 2:54 pm
Forum: Scripts Discussion
Topic: Applescript?
Replies: 4
Views: 12813

Re: Applescript?

Yes, for something as basic as telling after effects to run a script from an applescript the scripting guide found here: http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/aftereffects/pdfs/aftereffectscs3_scripting_guide.pdf has some useful examples on page 8. Terminal commands ca...
by drockne
January 25th, 2013, 9:04 am
Forum: Scripts Discussion
Topic: Script advice
Replies: 5
Views: 13183

Re: Script advice

I know very little on how to use this command, but one of the scripts I wrote uses this to activate a ram preview. Best of luck. Let us know how it works.

thisComp.ramPreviewTest("",1,"");
by drockne
January 7th, 2013, 8:32 am
Forum: Script requests
Topic: Is this possible?
Replies: 4
Views: 11826

Re: Is this possible?

Sounds very possible. I've written a script that does something very similar, only with an XML input instead of a user controlled dialog. The only thing I'm not certain about is finding the out point of footage to trim your comp. Also if you're doing a source replace on footage, won't it trim your f...
by drockne
July 25th, 2012, 3:14 pm
Forum: Scripts Discussion
Topic: Running Terminal Commands from OSX
Replies: 1
Views: 7459

Re: Running Terminal Commands from OSX

I've been noodling on this problem as well. I don't have a complete solution yet, but I thought it might be helpful to share my thought process so far. Rather than use the callSystem method, I'm thinking the best solution is to write a text file temporarily that contains the intended terminal comman...