Index   <<First   <Prev   Next>   End>>
sample7 : How to load images and assign these image to objects on a window on Visualizer?
Sorry. Document is not written for the sample XML file Now!
XML elements: animeSingleObject,imageFile,animeImage
Download Source:sample7.zip,sample7.tgz Download Demo:sample7.wmv

XML source code

1: <?xml version="1.0" encoding="UTF-8"?>
2:
3:
4: <!DOCTYPE test SYSTEM "GonVisTool.dtd">
5:
6: <test>
7:
8: <imageFile id="img1" file="./img1.png" />
9: <imageFile id="img2" file="./img2.png" />
10:
11: <animation title="Sample" backColor="0 0 0">
12: <animeSingleObject position="0 0 0">
13: <animeImage image="img1" size="100 100" />
14: </animeSingleObject>
15: <animeSingleObject position="0 100 0">
16: <animeImage image="img2" size="50 50" />
17: </animeSingleObject>
18: </animation>
19: </test>
20:
21:
22: