Description
Gets or sets the path of xml file which contains description of a custom player.
If this property contains empty string then
<FlashSpring Server Installation Folder>\players\default\player.xml
file will be used as file with player description.
Type
String (read/write)
Here is an example of player XML description file. You can develop your custom
skins and add information about it into XML description.
<player>
<!-- General player settings -->
<general>
<!-- Player name -->
<name>Standard</name>
<!-- Player core module information -->
<module src="core.swf">
<!-- Player core capabilities -->
<capabilities>
<thumbnails supported="1" />
<presenterInfo supported="1" />
<hyperlinksSupport internal="1" external="1" />
<slideNotes supported="1" />
<sounds supported="1" />
<inkAnnotationTool supported="0" />
</capabilities>
</module>/>
</general>
<!-- Player skins information -->
<skins>
<!-- Null skin - skin without navigation elements -->
<nullskin src="nullskin.swf" swfVersion="7" />
<!-- Navigation panel skin -->
<navigationPanel src="navigation_panel.swf" swfVersion="7" />
<!-- Information about skin with navigation elements -->
<skin name="Standard" src="skin1.swf" swfVersion="8">
<capabilities>
<inkAnnotationTool supported="0" />
</capabilities>
<preview>
<screenshot src="skin1.jpg"/>
<slideArea left="91" top="14" width="306" height="230"/>
</preview>
<layout>
<additionalSize width="224" height="103"/>
<thumbnails affectWidth="0" affectHeight="0">
<maxSize width="120" height="90"/>
</thumbnails>
<presenterPhoto width="60" height="80" />
</layout>
</skin>
</skins>
</player>
See Also
Player Object