Other than not having to create another entry into PresetEffects.xml, are thereany more advantages over this method which is free?
Hi, Klaus First of all, with all due respect to author, the generated code sometimes contains a bugs.
Secondly, usability.To add or remove a Pseudo effect you do not need every time to edit PresetEffects manually.You can also edit the effects that have created before. You can apply one or more effects to the layer without writing code -just by pressing button.
One of the most important difference - you can create an installer, without which you will get an error at startup the project on other computers.A project with such error will not be accepted for sale on any video stock sites (videohive etc) . Also, the installer is a convenient way to save the effects.
Hi Oleg, sadly this doesnt work in AE CC for me, -unable to execute script at line 8. After Effects Error: The section name and key ( main Pref Section,Pref_JAVASCRIPT_DEBUGGER)could not be found in the preferences.
Any ideas to get it working ? Will it work? cheers shane
I'm sure I'm missing something really obvious here. Managed to create a perfectly working script and template file in AE CC. However, it ONLY works in CC. Tried in other versions and it will not open. How exactly can I make this work for other users that don't have CC?
Tobias My script does not make any changes to the AE (*.aep) file so this error is not caused by the script. After Effects CS4 , CS5.5 ,CS6 can't open files created in After Effects CC Use to develop your project earlier versions of the After Effects
Tobias My script does not make any changes to the AE (*.aep) file so this error is not caused by the script. After Effects CS4 , CS5.5 ,CS6 can't open files created in After Effects CC Use to develop your project earlier versions of the After Effects
-- Oleg
Ok, understood. So it's best to start new scripts in the oldest version possible since it will generally be upward compatible. I also solved the invert slider issue. Seems you have to just do that at the linked expression level. Thanks for your quick responses.
Slim Expressions Just crashed my project therefore corrupting it, lost four hours work my stupid fault though my could storage normally archives files when they are over written but for some reason it hasn't since last night
I'm writing a script wherein one of the layers that gets created needs the pseudo effect created by your script to be added to the layer. I have no idea how to do this. Can you advise?
Create solid -> add "my pseudo effect" -> done. :-)
I'm writing a script wherein one of the layers that gets created needs the pseudo effect created by your script to be added to the layer. I have no idea how to do this. Can you advise?
Create solid -> add "my pseudo effect" -> done. :-)
Best regards,
Tobias
Tobias Something like this
var curItem = app.project.activeItem; var curLayer = curItem.selectedLayers[0]; app.project.activeItem.curLayer.effect.addProperty("YourPseudoEffect");
I'm writing a script wherein one of the layers that gets created needs the pseudo effect created by your script to be added to the layer. I have no idea how to do this. Can you advise?
Create solid -> add "my pseudo effect" -> done. :-)
Best regards,
Tobias
Tobias Something like this
var curItem = app.project.activeItem; var curLayer = curItem.selectedLayers[0]; app.project.activeItem.curLayer.effect.addProperty("YourPseudoEffect");
Great I'll try it! Thank you so much for the quick replies!
I'm writing a script wherein one of the layers that gets created needs the pseudo effect created by your script to be added to the layer. I have no idea how to do this. Can you advise?
Create solid -> add "my pseudo effect" -> done. :-)
Best regards,
Tobias
Tobias Something like this
var curItem = app.project.activeItem; var curLayer = curItem.selectedLayers[0]; app.project.activeItem.curLayer.effect.addProperty("YourPseudoEffect");
Great I'll try it! Thank you so much for the quick replies!
Just wanted to share the success. All that's needed is to add the following line AFTER the layer creation line in the code.
Hi Oleg, it would be great if we could assign text ( or even better images), to the 'about' section of the cutom plugins, is it something that could possibly be considered in a newer revision ? cheers shane
1) I need to add Groups and of course Expression Controls to an existing Control Effect. It's a real pain in the backside to click on each item when I need to add controls with Slim Expression Controls. What's the best way to edit? Can I use an external script editor?
Is it possible to create a dropdown menu as an expression control? I know there is no such thing among regular expressions controls. The closest I got to this kind of behavior (choosing one thing from many available) was by using a bunch of checkboxes and expressions, but it's far from being perfect.
First of all, with all due respect to author, the generated code sometimes contains a bugs.
Secondly, usability.To add or remove a Pseudo effect you do not need every time to edit PresetEffects manually. You can also edit the effects that have created before. You can apply one or more effects to the layer without writing code -just by pressing button.
One of the most important difference - you can create an installer, without which you will get an error at startup the project on other computers. A project with such error will not be accepted for sale on any video stock sites (videohive etc) . Also, the installer is a convenient way to save the effects.
SlimExpressionControls_v1.03.jsxbin
[email protected]
sadly this doesnt work in AE CC for me,
-unable to execute script at line 8. After Effects Error: The section name and key ( main Pref Section,Pref_JAVASCRIPT_DEBUGGER)could not be found in the preferences.
Any ideas to get it working ? Will it work?
cheers
shane
Thank you for your message, I'm working on it.
seems to be working fine now
shane
Try Right-clicking on the AfterEffects and choosing “Run as administrator” option, even if you are
logged it as Administrator
Try to restart After Effect".
What is the exact error that is returned?
My script does not make any changes to the AE (*.aep) file so this error is not caused by the script.
After Effects CS4 , CS5.5 ,CS6 can't open files created in After Effects CC
Use to develop your project earlier versions of the After Effects
--
Oleg
Please send me your project (only *.aep) and PresetEffects.xml (placed in Adobe After Effects CSx\Support Files\PresetEffects.xml).
[email protected]
Something like this
var curItem = app.project.activeItem;
var curLayer = curItem.selectedLayers[0];
app.project.activeItem.curLayer.effect.addProperty("YourPseudoEffect");
Did you receive email from me?
it would be great if we could assign text ( or even better images), to the 'about' section of the cutom plugins,
is it something that could possibly be considered in a newer revision ?
cheers
shane
Is it possible to create a dropdown menu as an expression control? I know there is no such thing among regular expressions controls. The closest I got to this kind of behavior (choosing one thing from many available) was by using a bunch of checkboxes and expressions, but it's far from being perfect.
Thanks!