Einzelnen Beitrag anzeigen
  #1  
Alt 28.09.06, 16:47
Nejah Nejah ist offline
Forum Newbie
 
Registriert seit: 06.09.06
Alter: 22
Beiträge: 46

Gifbuilder mit anderen TV Feldern als Parameter


Hallo!
Ich möchte zwei Textfeld-Eingaben (Nicht gemappt) auf ein in TemplaVoila gemapptes Bild rendern. Dafür habe ich mir das entsprechende Tutorial aus dem TYPO3-Wiki zu Gemüte geführt: >> HIER

Leider wird im Frontend nur das Bild angezeigt und kein Text drauf gerendert. Natürlich sind die entsprechenden Textfelder bereits mit Content gefüllt und der Cache geleert worden.

Der TS-Code in der Data Structure sieht bei mir so aus:
Typoscript-Code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
<![CDATA[
                 #getting the value of a TV field.
temp.hlimg1=TEXT
temp.hlimg1.field=hlimg1

                 #getting the value of a TV field.
temp.hlimg2=TEXT
temp.hlimg2.field=hlimg2

20 = IMAGE
20.file = GIFBUILDER
20.file {
XY = 446,189
10 = IMAGE
10.file.import = uploads/tx_templavoila/
10.file.import.current = 1
10.file.import.listNum = 0
10.file.maxW = 446
10.file.minW = 446
10.file.maxH = 189
10.file.minH = 189

20 = TEXT
                    #transfer the values of the TV field
20.text < temp.hlimg1
20.offset = 10,100
20.niceText = 1
20.align=left
20.fontSize= 14
20.fontFile = fileadmin/templates/fonts/verdana.ttf
20.fontColor = black

30 = TEXT
                    #transfer the values of the TV field
30.text < temp.hlimg2
30.offset = 10,115
30.niceText = 1
30.align=left
30.fontSize= 10
30.fontFile = fileadmin/templates/fonts/verdana.ttf
30.fontColor = black
}

]]> - ERROR: Line 43: Object Name String, "]]" contains invalid character "]". Must be alphanumeric or one of: "_-."

Der Pfad für die Fonts ist korrekt. Kann es sein, dass diese eventuell trotzdem nicht gefunden werden?

Geändert von Nejah (29.09.06 um 10:19 Uhr).
Mit Zitat antworten