Any Sublime text experts out there... ? Made a build system to send current file to be executed in AFX...
I did try it with the -s and feeding a line of code and it works. So when I switch to sending the current file....
It switches over to AFX but does nothing... can't figure it out. I am aware of the build system from AEtuts but I
am trying to figure stuff out and learn as I go along.... (Not an expert in Sublime/Python/cmd line)
//Contents of my build file...
{
"cmd": ["afterfx", "-r", "\"$file\""]
}
//Which sends (I think) to the command line.
Running afterfx -r "C:\Program Files\Adobe\Adobe After Effects CS5.5\Support Files\Scripts\ScriptUI Panels\AED_CornerCutters\AED_AdjustmentLayer.jsx"
After Effects is called but doesn't read the jsx....
Any ideas?