Hi,
I am using the great widget Runway, I set the properties based on the
example but I cannot set to true the "showSideSlideToolTip" property
like the "showSubtitle" (which works fine) , also I am wondering how
to set the pointer to Hand with the onSideSlideMouseOver events, what
do I miss ?
function onLoad()
{
widget = Runway.createOrShowInstaller
(
document.getElementById("the-widget"),
{
// examples of initial settings
slideSize:174,
reflectivity:0.0,
reflectionExtent:0.0,
spread:0.2,
centerSpread:0.5,
recede:1.0,
tilt:65,
showSubtitle:true, <--
this one is OK
backgroundGradient:"single",
backgroundColor:"#edb",
backgroundColorTop:"#edb",
backgroundColorMiddle:"#edb",
backgroundColorBottom:"#edb",
showSideSlideToolTip:true, <-- this
one does not work
onReady: function()
{
widget.setRecords(records);
widget.select(3);
},
onSideSlideMouseOver: function(index, id) {
// console.log("over " + index);
},
onSideSlideMouseOut: function(index, id) {
// console.log("out " + index);
}
}
);
}
--
You received this message because you are subscribed to the Google Groups
"SIMILE Widgets" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/simile-widgets?hl=en.