Search found 7 matches
- 2009-09-02 14:03:53
- Forum: Ant Movie Catalog > Scripts
- Topic: Running a script from another script
- Replies: 2
- Views: 1181
- 2009-09-01 09:23:31
- Forum: Ant Movie Catalog > Scripts
- Topic: Running a script from another script
- Replies: 2
- Views: 1181
Running a script from another script
It is possible to run a script from another script? I use the IMDb script only, but with some modifications. The script have some changes from time to time and I have to update it every time. So I'm looking for a way to avoid this. Running the IMDb script unmodified and making my own modifications o...
- 2009-06-19 17:17:59
- Forum: Ant Movie Catalog > Scripts
- Topic: Extract first line from a description field
- Replies: 2
- Views: 1051
Here is the solution for extracting the first line:
Code: Select all
var
s, t: string;
w: integer;
begin
s := GetField(FieldDescription);
w := Pos('<h3>Description',s);
t := copy(s, 1, w-3);
SetField(FieldLanguages, t);
end.
- 2009-06-19 13:44:13
- Forum: Ant Movie Catalog > Scripts
- Topic: Extract first line from a description field
- Replies: 2
- Views: 1051
Extract first line from a description field
In the past I used the DESCRIPTION field to collect "Languages", "Country" and "Description". The data was stored in this field with the HTML tag I need. Now I organize the catalog in a different way and I need to move "Languages" and "Country" from ...
- 2009-06-18 12:44:11
- Forum: Ant Movie Catalog > Scripts
- Topic: CR/LF (linebreak) in a field
- Replies: 4
- Views: 1335
- 2009-06-18 12:27:25
- Forum: Ant Movie Catalog > Scripts
- Topic: CR/LF (linebreak) in a field
- Replies: 4
- Views: 1335
- 2009-06-18 10:51:31
- Forum: Ant Movie Catalog > Scripts
- Topic: CR/LF (linebreak) in a field
- Replies: 4
- Views: 1335
CR/LF (linebreak) in a field
Does anybody know how to find the CR/LF (linebreak) sequence in one of AMC fields (DESCRIPTION for example)? I need to replace a part of the field and that part contain some CR/LF.