Search found 461 matches

by lloydalvarez
April 2nd, 2010, 9:24 pm
Forum: Scripts Discussion
Topic: OutputModule change settings
Replies: 3
Views: 8190

Re: OutputModule change settings

Output Module
by lloydalvarez
April 1st, 2010, 3:06 pm
Forum: Scripts Discussion
Topic: dropdown list feeded by folder content on harddrive
Replies: 2
Views: 6822

Re: dropdown list feeded by folder content on harddrive

Hi Paynton, the Folder.getFiles() function will return an array of all files and folders as objects in that folder. It also accepts a function that can be used as a mask so that it only returns .ffx files or you can loop through the array and filter out the .ffx files afterwards (might be less confu...
by lloydalvarez
March 31st, 2010, 3:20 pm
Forum: Expression Discussion
Topic: Extract GPS data from Video File
Replies: 6
Views: 19804

Re: Extract GPS data from Video File

Hi Koby, Both my Batch Search and Replace Paths http://aescripts.com/batch-search-n-replace-paths/ and my Photo Orientation Fixer http://aescripts.com/photoorientationfixer/ scripts work with metadata, the later works with EXIF data specifically. Hope you find them helpful and if you come up with a ...
by lloydalvarez
March 25th, 2010, 9:35 am
Forum: General Scripts Library
Topic: Quick effects palette
Replies: 43
Views: 172016

Re: Quick effects palette

StaticText is compatible with CS3, just make sure you capitalize it correctly. If you are using add the you need to keep it all lowercase:

Code: Select all

myPanel.sep = myPanel.add("statictext", [210, 10, 220, 25], "|");
-Lloyd
by lloydalvarez
March 20th, 2010, 5:04 am
Forum: Scripts Discussion
Topic: Copy text to clipboard
Replies: 6
Views: 9788

Re: Copy text to clipboard

No need for applescript.

Code: Select all

var myTextString = "I am going on a ride on the clipboard";
system.callSystem("echo " +  myTextString + " | pbcopy");
-Lloyd
by lloydalvarez
March 18th, 2010, 11:39 am
Forum: Scripts Discussion
Topic: Copy text to clipboard
Replies: 6
Views: 9788

Re: Copy text to clipboard

Hey Ben

On mac you can use pbcopy http://ss64.com/osx/pbcopy.html
Not sure about windows, have never looked into it but there must bea way.

Lloyd
by lloydalvarez
March 9th, 2010, 3:55 pm
Forum: Scripts Discussion
Topic: OutputModule change settings
Replies: 3
Views: 8190

Re: OutputModule change settings

Can't access the output modules through scripting, you would need to create the OM with whatever settings you want and then apply that OM with the script.

-Lloyd
by lloydalvarez
March 9th, 2010, 3:54 pm
Forum: Scripts Discussion
Topic: CS3/CS4 FootageItem - load specific photoshop (psd) layer?
Replies: 1
Views: 5973

Re: CS3/CS4 FootageItem - load specific photoshop (psd) layer?

If you use the CS4 xml option of my Batch Search and Replace script it should properly update psd layers.

-Lloyd
by lloydalvarez
March 7th, 2010, 12:04 pm
Forum: Script requests
Topic: need a simple example of a UI that controls a parameter
Replies: 1
Views: 6769

Re: need a simple example of a UI that controls a parameter

ExtendScript Toolkit comes with an SDK that has many ScriptUI Examples. SnpCreateSlider.jsx shows how to create a dockable script with a slider.

-Lloyd
by lloydalvarez
March 7th, 2010, 12:02 pm
Forum: Script requests
Topic: Reset anchor to center of layer, but keep layer position.
Replies: 1
Views: 9212

Re: Reset anchor to center of layer, but keep layer position.

RepositionAnchorPoint http://aescripts.com/repositionanchorpoint/

This script allows you to reposition the anchor point of the selected layers around the layer edges while keeping the layers at the same position in the comp window.

-Lloyd
by lloydalvarez
March 1st, 2010, 3:49 pm
Forum: Scripts Discussion
Topic: Detailed rendertime script?
Replies: 8
Views: 13922

Re: Detailed rendertime script?

Again, I have not looked at your project so who knows what might be causing your slow down. But what I do know is that if you get into a memory swap situation rendering crawls to a halt so if you want to try using a ram disk then I think that would be an interesting test.

-Lloyd
by lloydalvarez
March 1st, 2010, 1:42 pm
Forum: Scripts Discussion
Topic: Detailed rendertime script?
Replies: 8
Views: 13922

Re: Detailed rendertime script?

It's not that straight forward. The AE docs explain it in detail but it still sounds like to me like you are running out of RAM. Depending on how big your pre-comps are and how many instances you have you might be hitting 32bit limits regardless of how much ram you have installed. This would explain...
by lloydalvarez
March 1st, 2010, 1:24 pm
Forum: Scripts Discussion
Topic: Detailed rendertime script?
Replies: 8
Views: 13922

Re: Detailed rendertime script?

When you multithreading do you mean that you have multi-processing turned on? If so 8GB is not enough RAM to successfully use MP.

-Lloyd
by lloydalvarez
March 1st, 2010, 12:45 pm
Forum: Scripts Discussion
Topic: Determining Width and Height of a Text Layer
Replies: 62
Views: 127047

Re: Determining Width and Height of a Text Layer

Brilliant as usual Nab! Thanks for sharing.

-Lloyd