Search found 461 matches

by lloydalvarez
April 1st, 2011, 2:08 pm
Forum: Scripts Discussion
Topic: Image Sequences
Replies: 2
Views: 8048

Re: Image Sequences

I have found that AE doesn't always use the [] on sequences. Might have to do with the length of the name ore something. So unfortunately that means you can't rely on it to determine if it is a sequence. I think using FootageSource isStill plus checking out the source file to make sure it's not a mo...
by lloydalvarez
April 1st, 2011, 2:02 pm
Forum: Scripts Discussion
Topic: free for you! movie barcode generator
Replies: 4
Views: 15119

Re: free for you! movie barcode generator

Those are some really cool looking results. Is the script available somewhere?

-Lloyd
by lloydalvarez
March 21st, 2011, 12:16 pm
Forum: Expression Discussion
Topic: cash multipler
Replies: 3
Views: 13490

Re: cash multipler

So why don't you just do exactly that? y * x
by lloydalvarez
March 3rd, 2011, 3:19 pm
Forum: Script requests
Topic: Split Video Automatically Based on Criteria
Replies: 7
Views: 15984

Re: Split Video Automatically Based on Criteria

Yes, but you would need to scan the frame pixel by pixel which would take forever using sampleImage(). I think this is a better job for a pixel bender plugin which is designed to do this kind of stuff.
by lloydalvarez
March 3rd, 2011, 12:05 pm
Forum: Scripts Discussion
Topic: Syntax for a multi-dimensional array?
Replies: 1
Views: 6432

Re: Syntax for a multi-dimensional array?

But what is the syntax for a 2 or 3 dimensional array? If you mean an array that holds arrays you could define it like this: var myArray = [new Array(),new Array()]; Although in most cases you don't need to do that you can just define the array directly with the values: var myArray = [[0,0],[1,1]];...
by lloydalvarez
February 3rd, 2011, 5:15 pm
Forum: Script requests
Topic: simple bach replace footage in a selected comp?
Replies: 1
Views: 7226

Re: simple bach replace footage in a selected comp?

Immigration can do this. And yes, it is not a simple thing to write :-)

http://aescripts.com/immigration

-Lloyd
by lloydalvarez
February 3rd, 2011, 5:13 pm
Forum: Scripts Discussion
Topic: timeToCurrentFormat = less digits?
Replies: 2
Views: 7321

Re: timeToCurrentFormat = less digits?

Parse the number before appending it to the name. You can either use parseInt() or parseFloat(). There's lot of info online about both functions.

-Lloyd
by lloydalvarez
February 3rd, 2011, 5:09 pm
Forum: Scripts Discussion
Topic: Replacing layers but keeping the same names
Replies: 1
Views: 5836

Re: Replacing layers but keeping the same names

Save the name into a variable before you do the replace and then rename the layer using the saved name variable.

Lloyd
by lloydalvarez
January 17th, 2011, 2:31 pm
Forum: Scripts Discussion
Topic: app.quit() in startup folder
Replies: 7
Views: 14476

Re: app.quit() in startup folder

Please file a bug at http://adobe.com/go/wish/

The more people that report the problem the more likely it is that it will be fixed.

-Lloyd
by lloydalvarez
January 11th, 2011, 12:28 pm
Forum: Script requests
Topic: A proper Coner Pin/Mesh Wrap tool for once
Replies: 2
Views: 10529

Re: A proper Coner Pin/Mesh Wrap tool for once

Have you checked out Tracker2Mask: http://aescripts.com/tracker2mask/

Also, I would highly recommend Re:Visions Re:Flex Warp as the best warping tool available for after effects: http://www.revisionfx.com/products/reflex/

-Lloyd
by lloydalvarez
January 11th, 2011, 12:23 pm
Forum: Scripts Discussion
Topic: file Object
Replies: 3
Views: 8365

Re: file Object

btw, the difference between adding the new and not is that if you have new File and the file does not exist then it will create a new file object if you don't add the new and the file doesn't exist you will get an error.

-Lloyd
by lloydalvarez
January 11th, 2011, 12:20 pm
Forum: General Scripts Library
Topic: BG Renderer 2 Pro
Replies: 0
Views: 10521

BG Renderer 2 Pro

Today I released BG Renderer 2.0. It is completely re-written from the ground up to be meaner, leaner and more productive. Also it is fully CS5 compatible and you should not see any more of the Terminal issues from the previous versions. The new Pro version includes some exciting new post render act...
by lloydalvarez
December 29th, 2010, 6:34 am
Forum: Scripts Discussion
Topic: Searching for a string in an external file
Replies: 15
Views: 24969

Re: Searching for a string in an external file

Great. Btw, you always want to break a loop once you've found what you were looking for :-)

Lloyd
by lloydalvarez
December 28th, 2010, 12:03 pm
Forum: Scripts Discussion
Topic: Reset value and remove keyframes - possible?
Replies: 5
Views: 12995

Re: Reset value and remove keyframes - possible?

Like I said earlier you will need to create a loop and remove the keyframes one by one so the info you find on how to remove one keyframe is what you'll want to use. Not sure there is a way to reset the transforms to their defaults but you can probably calculate them easily. I believe anchor and pos...