Dear visitor, welcome to krpano.com Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 |
<plugin name="raumInfo" url="%SWFPATH%/plugins/textfield.swf" html="data:html-raumInfo" ... /> <data name="html-raumInfo"> <p align="left"> <h1> VARIABLE </h1> </data> |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 |
<data name="teil1"> blabla </data> <data name="teil2"> blabla </data> ... txtadd(data:teil1, get(variable), data:teil2); ... |
|
|
Source code |
1 |
XML parser error: Unterminated element (#1096) |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<data name="html-Info-Header">
<p align="left">
<font face="arial" size="+2">
<textformat leftmargin="10" rightmargin="10">
<br />
<h1>
</data>
<data name="html-raumInfo-Text">
</h1>
<br />
blabla
</textformat>
</font>
</p>
</data>
...
txtadd(plugin[raumInfo].html, get(data[html-Info-Header].content), get(plugin[spotpos-aufriss].objekt) '<br/>', get(zwGr), ' - ', get(zwGbez), get(data[html-raumInfo-Text].content));
...
|
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<data name="html-Info-Header">
<p align="left">
<font face="arial" size="+2">
<textformat leftmargin="10" rightmargin="10">
<br />
<h1></h1>
</textformat>
</font>
</p>
</data>
<data name="html-raumInfo-Text">
<br />
blabla
</data>
|
- nun einen Worksround gefunden. Ein - dann sehr langer - Textadd, in dem ich sowohl die öffnenden als auch die schließenden HTML-Tags sowie die Variablen unterbringe, macht das gewünschte möglich. <data> Elements wären aber dennoch sehr viel interessanter ...... eigentlich ist das derartige Schachteln von Tags meines Wissens weder in HTML/XHTML noch in XML üblich
Hallo Sepp,Hallo Karsten,
Das oben ist aber ganz simpler HTML-Code. Das "Schachteln" ist schon Methode in HTML, usw.... eigentlich ist das derartige Schachteln von Tags meines Wissens weder in HTML/XHTML noch in XML üblich![]()
Viele Grüße
Sepp
, ja natürlich.|
|
Source code |
1 2 3 4 |
<div id="divA"> <h1>Überschrift </div> </h1> |
|
|
Source code |
1 2 3 |
<div id="divA"> <h1>Überschrift</h1> </div> |