1
2
'公共属性
3
4
2
3
4
1
End Sub
1
1
<?xml version="1.0" encoding="gb2312"?>
2
<sys>
3
<set>
4
<ISPLAY intro="是否播放:Y否,N是">Y</ISPLAY>
5
<IP intro="目标机的IP">192.0.3.33</IP>
6
<Port intro="目标机端口号">34567</Port>
7
<filePath intro="媒体文件路径">c:\adFile\</filePath>
8
<date intro="日期">2007209</date>
9
<version intro="版本号">01</version>
10
</set>
11
</sys>
2
3
4
5
6
7
8
9
10
11
1
<?xml version="1.0" encoding="gb2312"?>
2
<adList>
3
<file>
4
<fileType intro="">pic</fileType>
5
<fileName intro="播放文件名">1.jpg</fileName>
6
<width intro="宽度">800</width>
7
<height intro="高度">600</height>
8
<playTime intro="播放时间">4</playTime>
9
<scale intro="缩放比例">0</scale>
10
<playCount intro="播放次数">1</playCount>
11
</file>
12
<file>
13
<fileType intro="">pic</fileType>
14
<fileName intro="播放文件名">2.jpg</fileName>
15
<width intro="宽度">800</width>
16
<height intro="高度">600</height>
17
<playTime intro="播放时间">4</playTime>
18
<scale intro="缩放比例">0</scale>
19
<playCount intro="播放次数">1</playCount>
20
</file>
21
<file>
22
<fileType intro="">pic</fileType>
23
<fileName intro="播放文件名">30.jpg</fileName>
24
<width intro="宽度">1024</width>
25
<height intro="高度">768</height>
26
<playTime intro="播放时间">4</playTime>
27
<scale intro="缩放比例">0</scale>
28
<playCount intro="播放次数">1</playCount>
29
</file>
30
<file>
31
<fileType intro="">video</fileType>
32
<fileName intro="播放文件名">1.wmv</fileName>
33
<width intro="宽度">800</width>
34
<height intro="高度">600</height>
35
<playTime intro="播放时间">15</playTime>
36
<scale intro="缩放比例">0</scale>
37
<playCount intro="播放次数">1</playCount>
38
</file>
39
<file>
40
<fileType intro="">pic</fileType>
41
<fileName intro="播放文件名">4.jpg</fileName>
42
<width intro="宽度">800</width>
43
<height intro="高度">600</height>
44
<playTime intro="播放时间">4</playTime>
45
<scale intro="缩放比例">0</scale>
46
<playCount intro="播放次数">1</playCount>
47
</file>
48
<file>
49
<fileType intro="">video</fileType>
50
<fileName intro="播放文件名">1.swf</fileName>
51
<width intro="宽度">800</width>
52
<height intro="高度">600</height>
53
<playTime intro="播放时间">15</playTime>
54
<scale intro="缩放比例">0</scale>
55
<playCount intro="播放次数">1</playCount>
56
</file>57
58
</adList>
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
45
46
47
48
49
50
51
52
53
54
55
56
58