Search found 705 matches

by Paul Tuersley
February 12th, 2011, 7:38 am
Forum: Script requests
Topic: Font search
Replies: 22
Views: 48491

Re: Font search

You should be able to read all the lines of the actual text, but the font and other values do seem to just come from the first character. You wouldn't be able to 100% guarantee that you've listed all fonts used in a project. Even if you checked the font used on every keyframe, it would still miss fo...
by Paul Tuersley
February 11th, 2011, 6:21 am
Forum: Script requests
Topic: Font search
Replies: 22
Views: 48491

Re: Font search

Hi David, Nothing major has changed in this area since CS4, so as far as I know it still isn't possible, and I doubt it ever will be. I can't even imagine how it could be implemented. You'd need some way of querying the style of every single character on a text layer. At the moment, it just appears ...
by Paul Tuersley
February 3rd, 2011, 8:45 am
Forum: Scripts Discussion
Topic: Test if running with After Effects UI
Replies: 2
Views: 6334

Re: Test if running with After Effects UI

Do you mean test if the script is running in After Effects, or test if it's running as a dockable panel?

For the second you could use something like:

Code: Select all

if (myPal instanceof Panel) {
by Paul Tuersley
February 2nd, 2011, 8:28 am
Forum: Scripts Discussion
Topic: Loop thru all items in comp and change duration
Replies: 4
Views: 9158

Re: Loop thru all items in comp and change duration

You're sending two different types of "layers" to the chngDur function. Your own "layers" array starts with an index of 0. But comp.layers (which you send when you find a precomp) is from 1 > comp.numLayers. You could send an additional startIndex to changDur: chngDur(layers,val,...
by Paul Tuersley
February 2nd, 2011, 7:32 am
Forum: Scripts Discussion
Topic: Loop thru all items in comp and change duration
Replies: 4
Views: 9158

Re: Loop thru all items in comp and change duration

Your for loop starts from var i = 1 while an array index (layers) starts from 0.

BTW: Instead of layers = curComp.selectedLayers;
you can use this to add to an array layers.push(curComp.selectedLayers);

Paul
by Paul Tuersley
January 25th, 2011, 6:41 am
Forum: Paul Tuersley's Scripts
Topic: Trying to use AE to C4D with Foundry's Camera Tracker
Replies: 3
Views: 36955

Re: Trying to use AE to C4D with Foundry's Camera Tracker

Hi Dave,

From the screenshot it looks like you just haven't chosen to view the scene through the camera. The top left view is labelled 'perspective'. From the viewport menu choose Camera > Scene Cameras > Camera 1.

Paul
by Paul Tuersley
January 24th, 2011, 11:56 am
Forum: Paul Tuersley's Scripts
Topic: pt_SSA Karaoke Animator
Replies: 183
Views: 545351

Re: pt_SSA Karaoke Animator

The top to bottom text flow mode is a bit of a hack, done by adding a line return after each character, and I don't think I've heard from anyone who's used it. I didn't implement bouncing ball for that mode as it wasn't clear what it should do, or if anyone would use it. I think your best chance is ...
by Paul Tuersley
January 23rd, 2011, 8:09 am
Forum: Scripts Discussion
Topic: Change Text propertys
Replies: 2
Views: 7756

Re: Change Text propertys

There's an example here: http://blogs.adobe.com/toddkopriva/2008/12/after-effects-cs4-scripting-ch.html You need to grab the text value, change it, then set it back to the property: var myTextDocument = myTextLayer.property("ADBE Text Properties").property("ADBE Text Document") v...
by Paul Tuersley
January 18th, 2011, 12:29 pm
Forum: Paul Tuersley's Scripts
Topic: pt_SSA Karaoke Animator
Replies: 183
Views: 545351

Re: pt_SSA Karaoke Animator

The easiest way would be to parent your new layer to the Ball layer, and turn the Ball layer off.
by Paul Tuersley
January 18th, 2011, 2:19 am
Forum: Scripts Discussion
Topic: Layer style - add / enable
Replies: 2
Views: 6280

Re: Layer style - add / enable

I needed to do this too and found it wasn't easy. I ended up doing it by saving animation presets for each layer style (Blending Options too) into a 'support folder' and then getting the script to locate and apply the correct animation preset. I recommend filing a request to allow layer styles to be...
by Paul Tuersley
January 15th, 2011, 5:38 am
Forum: Scripts Discussion
Topic: app.quit() in startup folder
Replies: 7
Views: 15268

Re: app.quit() in startup folder

I've just tried it on CS5 too and can confirm it doesn't work for me on CS5 Mac either. Looks like a bug.

Paul
by Paul Tuersley
January 15th, 2011, 5:21 am
Forum: Scripts Discussion
Topic: Updating dropdown list on click
Replies: 3
Views: 7009

Re: Updating dropdown list on click

Why does your listbox disappear when clicked? Is that something you've coded it to do? If you have an "onChange" function that you don't want to be called, you can temporarily set it to null (e.g. listbox.onChange = null) while updating the listbox, then reassign it to the onChange functio...
by Paul Tuersley
January 13th, 2011, 4:25 am
Forum: Scripts Discussion
Topic: app.quit() in startup folder
Replies: 7
Views: 15268

Re: app.quit() in startup folder

I just put this script in my Startup folder and it worked as expected. Does it work for you?

Code: Select all

{
	app.quit();
}
by Paul Tuersley
December 17th, 2010, 12:52 pm
Forum: Paul Tuersley's Scripts
Topic: pt_CropPrecomps (formerly Crop Layer Sets)
Replies: 16
Views: 112908

Re: pt_CropPrecomps (formerly Crop Layer Sets)

I've posted an update for this script, now called pt_CropPrecomps.

New in version 2.0:

- Dockable UI and built-in help
- Option to retain border pixels
- Various bug fixes
- New video tutorial

Watch the tutorial video and download pt_CropPrecomps from aescripts.com
by Paul Tuersley
December 17th, 2010, 12:39 pm
Forum: Paul Tuersley's Scripts
Topic: pt_SSA Karaoke Animator
Replies: 183
Views: 545351

Re: pt_SSA Karaoke Animator

I've posted an update to pt_SSA Karaoke Animator (v2.3) with the following changes: - Added a bouncing ball option. - Removed the old animation system. Now only works with animation presets. - Built-in help and user guide to learn how to create your own presets. - Includes some new built in presets....