I am trying Manipulate function in Mathematica 10.2. The problem is that when I move the slider the graph manipulates but when I click the + sign/expand button to see the value it automatically resets my slider to start position.
I have tried Mathematica 10 where this problem never occured.
Also I want to keep sliders in expanded form even after I reinitialize my Manipulate function if possible.
I know that I can expand the slider and then move it but the problem is I have to reinitialize my Manipulate function many times for various reasons and thus sliders reset all the time.
Kindly help me out if possible.
PS: I have tried the Bookmark setting its a little tedious.
Slideruse the optionAppearance -> "Labeled"– Bob Hanlon Aug 06 '15 at 14:12Manipulate[x, {x, 0, 100, Appearance -> "Open"}]per the documentation forManipulatorandManipulate? – Michael E2 Aug 06 '15 at 14:15PacletInformation /@ PacletFindRemote["WolframAutoUpdate"]. MyVersionis 6.0.0. No date though. – Michael E2 Aug 06 '15 at 14:17"Version" -> "7.0.0":) andManipulator[1]resets to0when opened. – Kuba Aug 06 '15 at 14:31Manipulator[1]andvar = 1; Manipulator[Dynamic@var]still reset. ButManipulate[var, {{var, 75.}, 50., 100., 0.2}]works fine. -- I voted to close as a duplicate, but now I think it should be closed as needing example code to reproduce the problem. – Michael E2 Aug 06 '15 at 16:23Manipulatethat shows how you're using slider/manipulator? Thanks. – Michael E2 Aug 06 '15 at 17:02Manipulator[0.9]works fine). It seems openingManipulator[x., {a, b}], replaces the valuexbyMod[x, b-a, a]. In one way it makes sense, since you're opening (and activating) the animator component. – Michael E2 Aug 06 '15 at 21:30