summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/media9/files/config.xml
blob: 2c7907c61f786ee9759de80983091be9e6a95f1c (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<SlideShow>
  <!--
       Configuration file template for SlideShow.swf

       SlideShow.swf can display life and static PNG/JPEG/GIF image
       files from remote servers or residing on the same server as the
       app itself.

       Pass this file to SlideShow.swf using the `xml=<configuration
       file>' FlashVar.

       **NOTE**: For security reasons of Flash Player, the configuration
       file and SlideShow.swf must reside on the same web server or
       be both embedded into the PDF. Different web servers or the
       combination of web server location and embedding into the PDF
       throws a security error.

       An image definition starts with <Img [attributes]> and ends
       with </Img>. All attributes in the opening <Img [attributes]>
       tag are optional:

         live="<refresh interval in [s]>"  for live remote image
         rot90="<integer number>"          initial rotation by number*90°

       The <URL>...</URL> element is mandatory, while the <caption>...</caption>
       element is not.

       An image URL, given between <URL> and </URL>, can be absolute,
       that is starting with 'http://...', or relative to the location
       of SlideShow.swf. See the examples.
  -->
  <!-- three live images; refresh interval in [s] -->
  <Img live="3">
    <caption>Live remote image.</caption>
    <URL>http://dev.eightbeers.org/tex/corner-icon.png</URL>
  </Img>
  <Img live="500">
    <caption>Aurora australis forecast (live remote image).</caption>
    <URL>http://services.swpc.noaa.gov/images/aurora-forecast-southern-hemisphere.png</URL>
  </Img>
  <Img live="500">
    <caption>Aurora borealis forecast (live remote image).</caption>
    <URL>http://services.swpc.noaa.gov/images/aurora-forecast-northern-hemisphere.png</URL>
  </Img>
  <!-- static image with URL relative to SlideShow.swf location -->
  <Img>
    <caption>CTAN lion drawing by Duane Bibby. Thanks to www.ctan.org.</caption>
    <URL>files/ctan_lion_350x350.png</URL>
  </Img>
  <!-- static remote image -->
  <Img rot90="3">
    <caption>Lion from the LaTeX project site, rotated by 3x90°.
Press `r' or `R' to change orientation.</caption>
    <URL>http://latex-project.org/lib/img/lion.png</URL>
  </Img>
</SlideShow>