-
1. Re: Develop a simple After Effects plugin in C# ?
Todd_KoprivaApr 11, 2012 2:06 PM (in response to petercli)
1 person found this helpfulHere's the SDK and related resources:
http://www.adobe.com/devnet/aftereffects.html
I moved your post to the SDK forum.
-
2. Re: Develop a simple After Effects plugin in C# ?
petercli Apr 11, 2012 3:46 PM (in response to Todd_Kopriva)HI Todd,
The examples in the SDK are c++. Can you create a plugin using c# ? Or other langues , like VB or Javascript ? I'd like to develop using Visual studio 2010 and C#.
(The sdk says :"Microsoft Visual Studio .NET 2008 (version 9.0) SP 1 for Windows Vista 64 or Windows 7 64" )
Thanks, Peter
-
3. Re: Develop a simple After Effects plugin in C# ?
shachar carmi Apr 13, 2012 8:14 AM (in response to petercli)hi petercli, and welcome to the forum!
generally speaking, you can write a plug-in in any language.
however, the AE API is in c/c++ only, so if you want to write in other languages, you will need to use some code in c++ to interface with AE, and from there on you can wrap calls from the c++ part to any other function you have in c#.
you'll just need to add some non .cpp files to your project.
in any case, start off from one of the samples from the SDK, and add your non c# code files to that project.
as for working with visual studio 2010, it's possible.
just make sure that if your resulting plug-in is dependent on external DLLs, that you're binding to dll versions available to your user. i don't know for sure, but i think vs2010 ships with newer dlls than windows7 does. (but don't take my word for it)
-
4. Re: Develop a simple After Effects plugin in C# ?
shachar carmi Apr 13, 2012 8:26 AM (in response to petercli)i also forgot to mention that you can run javascript code from within your C++ plug-in using the AEGP_ExecuteScript() command.
the java code can be embedded in the plug-in. you don't have to run an external file.
-
5. Re: Develop a simple After Effects plugin in C# ?
Royi A Aug 19, 2012 6:52 AM (in response to shachar carmi)Hi Shachar,
Do you mean I can embed a full script for AE written in Extended Script in my C++ Code?
Will it allow me to use some of the built in filters within AE?
Thanks.
-
6. Re: Develop a simple After Effects plugin in C# ?
shachar carmi Aug 19, 2012 7:02 AM (in response to Royi A)yes, you can run a script fully embedded in the plug-in. (meaning, no
external script file)
however, the same constraints of scripting for AE apply:
1. AE is the host running the script, so a script written for extedscript
in general and not AE specifically may not work.
2. AE scripting allows you manipulate the project, but it does not give you
access to image buffers or effects (besides the ability to apply an effect
to a layer (and not to process though it behind the scenes))