Search found 11 matches
- August 12th, 2010, 6:21 am
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
Here i am again I have now add a adjustmentlayer in my project (manual it is already placed there) I have a code that ADD a (new)solid mySolid = myComp.layers.Solid([0,0,0], "colorCorrect", myComp.width, myComp.height,1); mySolid.adjustmentLayer = true; myEffect = mySolid.property("E...
- August 10th, 2010, 2:01 pm
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
Here i am again I have now add a adjustmentlayer in my project (manual it is already placed there) I have a code that ADD a (new)solid mySolid = myComp.layers.Solid([0,0,0], "colorCorrect", myComp.width, myComp.height,1); mySolid.adjustmentLayer = true; myEffect = mySolid.property("Ef...
- August 10th, 2010, 3:42 am
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
Dan!
It works! so thanks!
It works! so thanks!
- August 9th, 2010, 4:39 pm
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
OK, like this then (substitute in the name of the image layer) var myLayer = myComp.layer("name of your image layer goes here"); var myEffect = myLayer.property("Effects").addProperty("ADBE Fast Blur"); myEffect.property("ADBE Fast Blur-0001").setValue(17); D...
- August 9th, 2010, 3:52 pm
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
You mean this //start var my_file = new File("d:/1.aep"); new_project = app.open(my_file);myComp = app.project.activeItem; mySolid = myComp.layers.addSolid([0,0,0], "colorCorrect", myComp.width, myComp.height,1); mySolid.adjustmentLayer = true; var myEffect = [b]mySollid[/b].prop...
- August 9th, 2010, 2:39 pm
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
This should work: var myEffect = myLayer.property("Effects").addProperty("Fast Blur"); myEffect.property("Blurriness").setValue(17); If you're using a foreign language version of AE, you may need to use the match names like this: var myEffect = myLayer.property("E...
- August 9th, 2010, 3:01 am
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
You have a lot of work left to do. You need to import your images (see ImportOptions() and importFile() in the scripting guide). You need to add each image to the comp and then add the effect. You need to add your comp to the render queue (app.project.renderQueue.items.add(comp). You may also need ...
- August 7th, 2010, 2:16 am
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
it didn't work must i give the full path of the image? for example d:\spot1.jpg? i wil get a script when i run it it must do: after open it there are 10 images in my work area each image must get the effect fast blurr and i wil give each Fast blur effect uits own value (changed manual in the script)...
- August 6th, 2010, 6:45 am
- Forum: Scripts Discussion
- Topic: Addding an effect to a layer
- Replies: 21
- Views: 205774
Re: Addding an effect to a layer
Hello When i Use app.project.item(1).layer("spot1.jpg")("Effects")("Fast Blur")("Blurriness").setValue(17); then i get a Error AE was unable to call Item layer ... what do i wrong? i have in my composition a image called spot1.jpg over this image i will get th...
- July 28th, 2010, 9:51 am
- Forum: Script requests
- Topic: automatically render
- Replies: 2
- Views: 11507
Re: automatically render
Hello is there no one with a sugestion or idea?
Or did I put my question at the wrong forum?
Or did I put my question at the wrong forum?
- July 27th, 2010, 7:27 am
- Forum: Script requests
- Topic: automatically render
- Replies: 2
- Views: 11507
automatically render
Hello First sorry for my bad english I am Dutch! I Try to made a script what can do the following thing! When AE start I will open a script that automatically open a file from d:\video.mov (full hd movie and length is different anytime) When the video is imported I will be placed a image over it als...