This is a basic straight forward skin. The compiled code is in the bin-debug folder. Place the WhiteSkin.swf into the "skins" directory of your FlashCartSystem installation directory on your server.
You can rename the swf to whatever you'd like... bare in mind the change in name changes the name you set in the config file.
config file set up:
<config>
<skin src="**name of swf without the .swf extension**" />
<db ... />
</config>
i.e. an installation COULD look like:
<config>
<skin src="WhiteSkin" />
<db type="xml" src="../flashCartSystem/" productXml="default.xml" sandbox="true"/>
<!-- <db type="sql" src="../flashCartSystem/" sandbox="true" /> -->
</config>
################
Special Param options of Product entries:
##option1 - this is for a list of options for your product. Such as colours for clothing.
directions for use: If using FlashCart lite you must place this in CDATA blocks as with any html syntax in XML.
Each option is to be broken by "option" tags.
<option>Red</option><option>Green</option>
Example in XML sheet:
<product>
...
<option1><![CDATA[
<option>Red</option>
<option>Green</option>
]]>
</option1>
...
</product>
##option2 - a second list of options for your product. Sush as sizes. This is useful for if you have something like a tee-shirt available in medium large and small, as well as red, green and blue.
Follows same rules as option1
Example in XML sheet:
<product>
...
<option1><![CDATA[
<option>Red</option>
<option>Green</option>
]]>
</option1>
<option2><![CDATA[
<option>small</option>
<option>medium</option>
<option>large</option>
]]>
</option2>
...
</product>