Search found 12 matches

by cdinic
March 23rd, 2011, 3:33 pm
Forum: Scripts Discussion
Topic: free for you! movie barcode generator
Replies: 4
Views: 15548

free for you! movie barcode generator

Hey guys. I made a quick movie barcode generator to make these: http://moviebarcode.tumblr.com/ It isn't very elegant and needs to handle large video formats, but it works! If you make any improvements please post back here so I can include them. http://dinicolas.tumblr.com/post/4050597179/movie-bar...
by cdinic
November 26th, 2008, 5:15 pm
Forum: Scripts Discussion
Topic: plug-in developer referal
Replies: 1
Views: 6125

plug-in developer referal

I'm looking for a AE plug-in developer. Any referrals would be appreciated!

Thanks,
-C
by cdinic
September 30th, 2008, 3:13 pm
Forum: Scripts Discussion
Topic: Duplicate Comp and all SubComps as UNIQUE
Replies: 2
Views: 7188

Re: Duplicate Comp and all SubComps as UNIQUE

Any ideas on this? Its looking more and more like I'll need to build a complicated parser to build up a multi-dimensional array of the nested composites hierarchy.

*banging my head against the wall...
-C
by cdinic
September 23rd, 2008, 12:03 am
Forum: Scripts Discussion
Topic: Custom file name / Output Render name / Render Path Script
Replies: 1
Views: 6156

Re: Custom file name / Output Render name / Render Path Script

This is a long list of requests. Post what you have and we'll help you with specifics. Also, check out: http://www.mitchallen.com/aftereffects/2006/03/after-effects-scripting-101.html http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=21&loc=en_us http://www.redefinery.com...
by cdinic
September 19th, 2008, 4:40 pm
Forum: Scripts Discussion
Topic: Duplicate Comp and all SubComps as UNIQUE
Replies: 2
Views: 7188

Duplicate Comp and all SubComps as UNIQUE

I need to alter the text of a layer deep within multiple subComps. I can do this just fine with one comp, killing the original. However, I need to duplicate an entire comp and all of its subComps many times. Currently AE doesn't seem to allow me to make a UNIQUE duplicate of a comp AND the subComps ...
by cdinic
September 19th, 2008, 1:27 pm
Forum: Scripts Discussion
Topic: Date on the mac
Replies: 2
Views: 6811

Re: Date on the mac

nice! I was thinking to hard.

Thanks,
-C
by cdinic
September 18th, 2008, 3:45 pm
Forum: Scripts Discussion
Topic: Date on the mac
Replies: 2
Views: 6811

Date on the mac

I'm trying to time stamp my errorLog.txt In the scripting guide there is this example for alerting the current system time: var timeSrt = system.callSystem("cmd.exe /c \"time/t\""); alert("Current time is " + timeStr); How can I accomplish this on the Mac/osx? In termin...
by cdinic
September 18th, 2008, 12:43 pm
Forum: Scripts Discussion
Topic: set a new activeItem for {app.executeCommand()}
Replies: 11
Views: 19409

Re: set a new activeItem for {app.executeCommand()}

I just got schooled. Here is the result. Nice clean, elegant text layer fitting //Get Text Layer Width var myTextLayer = compElement.layers var rect = myTextLayer.sourceRectAtTime(1, true); var TextWidth = rect.width; //If the layer is too big, scale it down if(TextWidth > targetW){ var Y = (100*(ta...
by cdinic
September 18th, 2008, 12:28 pm
Forum: Scripts Discussion
Topic: set a new activeItem for {app.executeCommand()}
Replies: 11
Views: 19409

Re: set a new activeItem for {app.executeCommand()}

Yea. Saw that after I posted my app.command solution.

.sourceRectAtTime is working.

thanks
-C
by cdinic
September 18th, 2008, 11:56 am
Forum: Scripts Discussion
Topic: set a new activeItem for {app.executeCommand()}
Replies: 11
Views: 19409

Re: set a new activeItem for {app.executeCommand()}

RamPreview Trick worked great. THANKS for your help. here is what I've got // Open the current CompItem using RamPreview hack // remember the original work area duration var duration = compElement.workAreaDuration; compElement.workAreaDuration = 0.06; compElement.ramPreviewTest("",1,"...
by cdinic
September 18th, 2008, 11:15 am
Forum: Scripts Discussion
Topic: set a new activeItem for {app.executeCommand()}
Replies: 11
Views: 19409

Re: set a new activeItem for {app.executeCommand()}

I got the addProperty to make a new mask: var myTextLayer = app.project.activeItem.selectedLayers[0]; myTextLayer.mask.addProperty("mask"); However, it creates a new mask with all points at the origin. The app.executeCommand(2367); makes a new mask that is fit to the bounds of my text laye...
by cdinic
September 17th, 2008, 6:31 pm
Forum: Scripts Discussion
Topic: set a new activeItem for {app.executeCommand()}
Replies: 11
Views: 19409

set a new activeItem for {app.executeCommand()}

I'm looping through a ton of layers and I want to run an app.executeCommand(2367); //newMask it fails to make the new mask because I haven't set the current layer to be the active item. I've tried deselecting everything, then selected the layer I'm looping through but its not workin. :cry: //get all...