Search found 321 matches
- March 13th, 2014, 7:43 pm
- Forum: Scripts Discussion
- Topic: workflow tips needed for setting up headless script (-noui)
- Replies: 0
- Views: 10784
workflow tips needed for setting up headless script (-noui)
My client is asking for me to create a script that can execute from Photoshop without showing the AE UI at all. For those that have created headless workflows, what tips and tricks can you recommend?
- January 28th, 2014, 9:00 pm
- Forum: Scripts Discussion
- Topic: Variable dump for error checking
- Replies: 0
- Views: 11648
Variable dump for error checking
I'm trying to build in some error reporting via a log file into one of my scripts. I'm catching the errors and writing them to a text file along with some periodic feedback items I've written in manually. Is there a way to sort of dump all the variables that have been defined up to the point of erro...
- April 17th, 2013, 4:13 am
- Forum: Scripts Discussion
- Topic: Layer Timecode?
- Replies: 1
- Views: 12375
Layer Timecode?
I can get the comp timecode but I can't seem to find an easy way to determine what the start timecode is from a given layer. Anyone know how to get that?
- April 16th, 2013, 10:36 am
- Forum: Scripts Discussion
- Topic: Set Slider Range ( min / max)?
- Replies: 3
- Views: 15467
Re: Set Slider Range ( min / max)?
I don't recall there being a solution but it has been quite some time since I tried that approach. It's possible they have made some changes I'm not aware of.
- March 26th, 2013, 2:13 pm
- Forum: Scripts Discussion
- Topic: Applescript?
- Replies: 4
- Views: 20635
Re: Applescript?
I'll give the command line approach a shot. I'm trying to hand off a snippet of code to an Applescript Developer who is assisting my client with some automation. I'm handling the Ae stuff and he is doing the AS part.
- March 25th, 2013, 1:35 pm
- Forum: Scripts Discussion
- Topic: Applescript?
- Replies: 4
- Views: 20635
Re: Applescript?
Bumping this thread again. I'm trying to get Applescript to execute an external jsx script. I have tried it two ways and both seem to fail for different reasons. 1st approach fails because applescript does not like the path to the script file I'm giving it. This location should be pretty static so I...
- January 28th, 2013, 7:55 pm
- Forum: Scripts Discussion
- Topic: Applescript?
- Replies: 4
- Views: 20635
Applescript?
Anyone ever messed around with hooking up applescript into AE scripts? Like, triggering scripts with droplets?
- January 11th, 2013, 9:54 am
- Forum: Scripts Discussion
- Topic: AE crashing on project save
- Replies: 0
- Views: 10771
AE crashing on project save
I am making a script for a client and it keeps crashing on save on their end. I've attached an error message they sent. The script saves a new copy of the project as a new name when it starts. Then after completing, it saves the project. It's crashing at the last save. I can't get it to do it on my ...
- January 2nd, 2013, 7:47 pm
- Forum: Scripts Discussion
- Topic: Script eval() stopped working
- Replies: 0
- Views: 10790
Script eval() stopped working
I have a palette that has a button to run a script. The location of the script is stored in the preferences. I had this working the other day, but now it's not executing the other script. Does this look correct? myWindow.myPanel.runButton.onClick = function () { alert("Running :" +ST.scrip...
- November 19th, 2012, 7:46 pm
- Forum: Scripts Discussion
- Topic: Undo grouping mismatch
- Replies: 0
- Views: 10701
Undo grouping mismatch
I seem to have this error from time to time and it's currently haunting me. After running a script, certain tasks in AE cause it crash with that error. I believe I have my undo groups properly setup in the scripts. What else can I check to rectify this?
- September 7th, 2012, 11:21 am
- Forum: Scripts Discussion
- Topic: Assigning helptips in Launchpad
- Replies: 2
- Views: 13465
Re: Assigning helptips in Launchpad
It's as simple as just adding the property.
All the UI stuff is documented in the Javascript Tools Guide found in the help menu of Extendscript.
Code: Select all
yourUIelement.helpTip("your text here")
All the UI stuff is documented in the Javascript Tools Guide found in the help menu of Extendscript.
- September 7th, 2012, 10:59 am
- Forum: Scripts Discussion
- Topic: XML parsing
- Replies: 4
- Views: 19110
Re: XML parsing
Thanks, I have the reading and writing working now.
Is there a way to write an XML from an Object? I can't find a way to dynamically access all the properties of an object. It would be awesome if you could convert the tree-like structure of an object straight into a XML object.
Is there a way to write an XML from an Object? I can't find a way to dynamically access all the properties of an object. It would be awesome if you could convert the tree-like structure of an object straight into a XML object.
- September 3rd, 2012, 12:05 pm
- Forum: Scripts Discussion
- Topic: XML parsing
- Replies: 4
- Views: 19110
Re: XML parsing
Wow, I didn't realized it was so simple. In testing, it seems to accept some XML files and not others. Also, how would you access something like this? <languages> <version>1</version> <language>en-US</language> <language>ja-JP</language> </languages> For the "version" token I think I could...
- September 1st, 2012, 12:11 pm
- Forum: Scripts Discussion
- Topic: XML parsing
- Replies: 4
- Views: 19110
XML parsing
What are you all using to get data out of a XML file? I'm thinking about switching to XML to store data in instead of CSV style text files. I was hoping there was a good method in place already that will read a file and return an object with all the nodes of the XML in it.
- August 9th, 2012, 6:51 pm
- Forum: Scripts Discussion
- Topic: Anyone had any luck with the wantReturn property? (scriptUI)
- Replies: 1
- Views: 10758
Anyone had any luck with the wantReturn property? (scriptUI)
They added the ability to hit return on the keyboard with CS6 inside an edittext. I'm trying to add this property to my box with no success. Anyone have this working?