Search found 84 matches

by Yenaphe
April 16th, 2009, 6:58 am
Forum: Scripts Discussion
Topic: Command line scripting
Replies: 2
Views: 6569

Re: Command line scripting

That could be possible. Your php page could create a file on your server, something like "myparams.txt" and then in your script, #include it. be sure your text file looks something like that: option1 = "value1"; option2 = "value2"; etc so your script can use these varia...
by Yenaphe
April 14th, 2009, 12:24 pm
Forum: Scripts Discussion
Topic: ExtendScript toolkit sucks
Replies: 6
Views: 16462

Re: ExtendScript toolkit sucks

I use it because i have nothing else to use exept notepad. But the only specific feature i use is the anchor to run it directly into AE.
by Yenaphe
April 14th, 2009, 12:21 pm
Forum: Scripts Discussion
Topic: UI Framework
Replies: 2
Views: 7661

Re: UI Framework

It sounds terrific. I'll looking forward the release !
by Yenaphe
April 10th, 2009, 9:39 am
Forum: Scripts Discussion
Topic: Dockable panel script laucnher
Replies: 4
Views: 8821

Re: Dockable panel script laucnher

I've had this problem often, and this is a design flow i guess. AE doesn't warn you when you launch a script from a script if there is an error in the script, it just does nothing. I recommand you testing and working on your script within Extended Toolscript. You can link it to AE with the small anc...
by Yenaphe
April 9th, 2009, 4:00 pm
Forum: Scripts Discussion
Topic: Slider and setValue
Replies: 4
Views: 10287

Re: Slider and setValue

For our non french friends, i'd like to add that "Paramètre glissière" is our translated version of "slider".
by Yenaphe
March 31st, 2009, 11:14 am
Forum: Script requests
Topic: Rendering Composites into their Project Folders
Replies: 2
Views: 7705

Re: Rendering Composites into their Project Folders

I don't know if a script already exist for this, but it is possible, and might not be hard to do.
by Yenaphe
March 29th, 2009, 4:57 am
Forum: Scripts Discussion
Topic: Reading file Problem
Replies: 1
Views: 5638

Reading file Problem

Hi everyone, up to now, i've had no problem in using this bit of code to read the content of a file and store it line by line in an array. var j = 0; var fileOK = XmlFile.open("r","XML","???"); if (fileOK){ var F_TXT = ""; while (!XmlFile.eof){ L_TXT = XmlFile...
by Yenaphe
March 29th, 2009, 4:43 am
Forum: Scripts Discussion
Topic: Array and NaN problem
Replies: 2
Views: 6451

Re: Array and NaN problem

Hi Foudou,

whould you mind posting an exerpt of your code (mostly for your second problem) so we can see what went wrong with your script ?
by Yenaphe
March 18th, 2009, 1:47 am
Forum: Expression Discussion
Topic: numbering a sequence of shot
Replies: 10
Views: 46823

Re: numbering a sequence of shot

Are each scene on a different layer ?
by Yenaphe
March 15th, 2009, 3:50 am
Forum: Announcements
Topic: XML based project files (.aepx)
Replies: 5
Views: 35352

Re: XML based project files (.aepx)

I'm gonna quote Mylenium on the Adobe AE Help Comment: The binary data is a temporary solution until the full internal data structure can be fleshed out as human-readable. There are no examples yet, but you may wish to keep an eye on the Developer Center for After Effects (http://www.adobe.com/devne...
by Yenaphe
March 10th, 2009, 6:03 pm
Forum: Scripts Discussion
Topic: AE On A Mac does not generate LF character.
Replies: 5
Views: 12171

Re: AE On A Mac does not generate LF character.

I thought that mac was using only CR ("\r") for a new line.
by Yenaphe
March 10th, 2009, 9:55 am
Forum: Script requests
Topic: Generating a AE based Z buffer.
Replies: 4
Views: 10538

Re: Generating a AE based Z buffer.

I'm actually writing a tutorial about this. I'll post here when it will be online, around middle of april if all goes well.
by Yenaphe
March 10th, 2009, 9:44 am
Forum: Script requests
Topic: Batch Convert Quicktimes to DPX files
Replies: 3
Views: 9350

Re: Batch Convert Quicktimes to DPX files

AME stands for Adobe Media Encoder, the batch encoding app that is delivered with Ppro and After Effects.
by Yenaphe
March 4th, 2009, 4:18 am
Forum: Script requests
Topic: Batch Convert Quicktimes to DPX files
Replies: 3
Views: 9350

Re: Batch Convert Quicktimes to DPX files

You houldn't have any problem, it should be an easy script.

But why wouldn't you use AME, drag & drop your QT and batch convert them there ?
by Yenaphe
March 4th, 2009, 4:15 am
Forum: Script requests
Topic: Request for an After Effects script to time stretch a layer
Replies: 2
Views: 9384

Re: Request for an After Effects script to time stretch a layer

well the idea would be to add a marker where you want your stretch effect to start, for each layer.

Then in the script, for each layer, you tell it to go the first marker of your layer then use it's current time as the starting time of your stretch. That might do the trick.