Search found 321 matches

by byronnash
July 14th, 2004, 11:31 am
Forum: Scripts Discussion
Topic: fileGetDialog on a Mac
Replies: 2
Views: 8605

fileGetDialog on a Mac

I'm having trouble getting the fileGetDialog to work properly on a Mac. The dialog pops up, but I cannot get it to let me select any of the files in the folder. I've tried all kinds of different file types like TEXT, TXT, ttxt etc... Anyone know what the correct syntax is for this function? I would ...
by byronnash
July 13th, 2004, 4:27 am
Forum: Scripts Discussion
Topic: Connecting to Excel
Replies: 8
Views: 22297

Are you sure that Javascript cannot access Excel? I pulled most of that code out of some other Javascript examples I was using for PS and XSI. I also used this link for guidance. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/jscript7/html/jsobjactivexobject.asp Maybe Jscript can a...
by byronnash
July 12th, 2004, 6:50 am
Forum: Scripts Discussion
Topic: Connecting to Excel
Replies: 8
Views: 22297

Connecting to Excel

I had a script working at one time that interfaced Excel and Photoshop. I am trying to get some of the elements to work with AE. Below is the script lines I'm trying to use: // Conect with Excel var appexcel = "Excel.Application"; // Open a Excel XLS file - just type the path with double b...
by byronnash
July 9th, 2004, 6:48 am
Forum: General Scripts Library
Topic: Replace Text to individual comps
Replies: 10
Views: 31233

Replace Text to individual comps

I am still new at scripting so my script is still a little sloppy, but I hope it can help give someone a springboard on doing a similar operation. There are several areas that will need to be tweaked to get it to work for your situation. Hope you like it! -Byron Download Script http://armoredsquirre...
by byronnash
July 9th, 2004, 4:30 am
Forum: Scripts Discussion
Topic: Scale layer down relative to comp
Replies: 3
Views: 12234

Thanks for te reply Paul. I am still pretty new at scripting, I have to hack my way through everything.

This site is a great idea, I hope it catches on fast. I think After Effects is much more potent now that you can script it.

Take care...

Byron
by byronnash
July 8th, 2004, 4:18 am
Forum: Scripts Discussion
Topic: Scale layer down relative to comp
Replies: 3
Views: 12234

Scale layer down relative to comp

I am working on a script that takes text out of a file and copies it into existing text layers. I'd like to add in a function that scales the text layer down if it is too large for the screen. This is what I have basically. var proj = app.project; var myComp = proj.item(1); var myLayer = myComp.laye...