Ok, got it finally.
For anyone else wanting to do this I am pasting what I did below.
Added:
Code:
config.$usepic.html('<input type="hidden" name="usepic" value="' + valuearray[0] + '">')
directly after:
Code:
for (var i=0; i<config.statusvars.length; i++){
window[config.statusvars[i]]=valuearray[i] //Define variable (with user specified name) and set to one of the status values
config.$statusobjs[i].text(valuearray[i]+" ") //Populate element on page with ID="user specified name" with one of the status values
then added:
Code:
usepicclass: 'usepic',
to the stepcarousel.setup() initialization script.
then added:
Code:
config.$usepic=config.$gallery.find('.'+config.usepicclass)
after this line:
Code:
config.$belt=config.$gallery.find('.'+config.beltclass) //Find Belt DIV that contains all the panels
in the html file simply add:
Code:
<div class="usepic" style="magin:0px;padding:0px;"></div>
just after the ending </div> for the belt div and before the ending </div> of your main block.
Bookmarks