Thanks for that tip btw.
I just looked it up, and although I didn't use the same method, it helped me understand how the file OM works.
Search found 6 matches
- January 10th, 2006, 3:45 am
- Forum: Script requests
- Topic: Changing the 'Output to' setting...
- Replies: 3
- Views: 15639
- December 19th, 2005, 8:41 am
- Forum: Scripts Discussion
- Topic: readln() and the "£" sign
- Replies: 4
- Views: 14510
- December 14th, 2005, 9:34 am
- Forum: Scripts Discussion
- Topic: readln() and the "£" sign
- Replies: 4
- Views: 14510
readln() and the "£" sign
When using readln(), if trying to read in a text file of over 50 lines, I get an interesting problem.
The readln() reads the string up until but not including the £ character.
Anyone experienced this before? And if so, any ideas? I do want to read in the whole string.
The readln() reads the string up until but not including the £ character.
Anyone experienced this before? And if so, any ideas? I do want to read in the whole string.
- December 14th, 2005, 9:04 am
- Forum: Scripts Discussion
- Topic: AE script error messages
- Replies: 1
- Views: 8993
- December 14th, 2005, 6:24 am
- Forum: Scripts Discussion
- Topic: AE script error messages
- Replies: 1
- Views: 8993
AE script error messages
Hey,
I'm having a bad time with one of my scripts, and I was wondering if anyone could clarify this message for me:
After Effects error: attempt to remove an item from a position outside of list length.
Any help would be greatly appreciated.
Thanks very much.
I'm having a bad time with one of my scripts, and I was wondering if anyone could clarify this message for me:
After Effects error: attempt to remove an item from a position outside of list length.
Any help would be greatly appreciated.
Thanks very much.
- December 13th, 2005, 6:54 am
- Forum: Scripts Discussion
- Topic: Text wrap in Text layer
- Replies: 2
- Views: 14598
As far as I know it isn't possible to do so. The method I use is using the substring command in javascript. You have to set a cut off point for the line to break at. I.e. if you want it to wrap at the 45th character, you need to set this. if (text.length > 45) { Line1 = text.substring(0, 45) Line2 =...