-
All replies
-
Helpful answers
-
Mar 18, 2014 12:48 PM in response to Joe-panby markmalone,Works for me. Have you hooked in any code that may be causing a problem?
I dropped a slider and a label on a page then selected the slider and clicked the code button then selected to overrride the Did Change Value event handler and added the follwoing code:
this.onControlValueChange = function (event) {
// Code here for the "Did Change Value" event.
var label = this.viewController.outlets.label;
label.text = this.value;
};
I can slide the knob and the label updates as expected. I did need to tap the widget before I could intereact with it in an iBook but otherwise it works the same for me in an iBook on the device as it does in preview.
Any other clues?
-Mark