This little part here is an instruction/template:
Code:
//variableslide[x]=["path to image", "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)"]
However, here:
Code:
variableslide[0]=["https://farm2.staticflickr.com/1497/25124601229_90604fb064_b.jpg"]
variableslide[1]=["https://farm2.staticflickr.com/1544/25196538220_755bfa57b8_b.jpg"]
variableslide[2]=["https://farm2.staticflickr.com/1711/24865434833_8759084fed_k.jpg"]
variableslide[3]=["https://farm2.staticflickr.com/1709/25373709692_bbbd7d1da8_k.jpg"]
variableslide[4]=["https://farm2.staticflickr.com/1603/25466014396_475df73d82_b.jpg"]
variableslide[5]=["https://farm2.staticflickr.com/1556/25373732262_7ce94cecb5_b.jpg"]
variableslide[6]=["https://farm2.staticflickr.com/1537/25492103585_d2339eee89_b.jpg"]
variableslide[7]=["https://farm2.staticflickr.com/1529/24861576224_d10ddae157_b.jpg"]
variableslide[8]=["https://farm2.staticflickr.com/1466/25124597469_d8dec7aeac_b.jpg"]
For each on you have left , "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)" both "undefined" only the description is shown though, so that's what you see. Now, while coding this script that could have been dealt with. But it wasn't. So you have to by supplying empty fields for any of the options you don't want to use, like so:
Code:
variableslide[0]=["https://farm2.staticflickr.com/1497/25124601229_90604fb064_b.jpg", "", ""]
variableslide[1]=["https://farm2.staticflickr.com/1544/25196538220_755bfa57b8_b.jpg", "", ""]
variableslide[2]=["https://farm2.staticflickr.com/1711/24865434833_8759084fed_k.jpg", "", ""]
variableslide[3]=["https://farm2.staticflickr.com/1709/25373709692_bbbd7d1da8_k.jpg", "", ""]
variableslide[4]=["https://farm2.staticflickr.com/1603/25466014396_475df73d82_b.jpg", "", ""]
variableslide[5]=["https://farm2.staticflickr.com/1556/25373732262_7ce94cecb5_b.jpg", "", ""]
variableslide[6]=["https://farm2.staticflickr.com/1537/25492103585_d2339eee89_b.jpg", "", ""]
variableslide[7]=["https://farm2.staticflickr.com/1529/24861576224_d10ddae157_b.jpg", "", ""]
variableslide[8]=["https://farm2.staticflickr.com/1466/25124597469_d8dec7aeac_b.jpg", "", ""]
That will take care of it!
Bookmarks