Search found 4 matches

by jm16000
January 17th, 2013, 2:14 am
Forum: Scripts Discussion
Topic: controlling Puppet tool with script ?
Replies: 2
Views: 11510

Re: controlling Puppet tool with script ?

Thanks a lot Paul! :)
I think I can manage my project with the precomp method (but thanks for the script too)
by jm16000
January 9th, 2013, 5:38 am
Forum: Scripts Discussion
Topic: controlling Puppet tool with script ?
Replies: 2
Views: 11510

controlling Puppet tool with script ?

Hello, I have to use Puppet tools on hundred of pictures... but always with the same parameters. If I just replace the picture, the Puppet screw up.. It would take days to make each Puppet "by hand" on every pictures... So I try to make a script which could create a Puppet effect with Pupp...
by jm16000
April 18th, 2011, 8:28 am
Forum: Scripts Discussion
Topic: dynamics button names
Replies: 1
Views: 6465

Re: dynamics button names

if someone search the same thing, i found a solution...

with the eval function

this line

Code: Select all

bt_take.onClick = function () { take (n); }
works better in this way :

Code: Select all

eval("bt_take.onClick = function () { take ("+n+");  }");
by jm16000
April 18th, 2011, 2:58 am
Forum: Scripts Discussion
Topic: dynamics button names
Replies: 1
Views: 6465

dynamics button names

Hello everybody! I'm trying to generate buttons with a "for" loop but I have problems with the name : I would like to have this... function THEONE(thisObj) { function take(nb) { alert (nb); } function take_buildUI(thisObj) { var myPanel = (thisObj instanceof Panel) ? thisObj : new Window(&...