So this is something very similar to my code
Manipulate[Graphics[{Red, Rectangle[{0 + x, 0}, {2 + x, 0.5}], PlotRange -> {{1, 10}, {-1, 5}}, ImageSize -> Large], {x, 1, 10, Appearance -> "Open", AnimationRunning -> True, AnimationRate -> v, AppearanceElements -> None}, ControlPlacement -> Top] I'm trying to make the x slider invisible while the animation continues to run, but when I use
Invisible@{x, 1, 10, Appearance -> "Open", AnimationRunning -> True, AnimationRate -> v, AppearanceElements -> None} the animation stops running. How can I make it so that while the slider is invisible, it continues to animate? should i use Animate instead of Manipulate?


should i use Animate instead of Manipulate?there is really no reason to use Animate over Manipulate. Manipulate can do what Animate does and much more. I always use Manipulate myself. Better learn one command well, than two not too well. $\endgroup$v = 1; Animate[ Graphics[{Red, Rectangle[{0 + x, 0}, {2 + x, 0.5}]}, PlotRange -> {{1, 10}, {-1, 1}}, ImageSize -> Large], {{x, 1, Invisible[""]}, 1, 10, AppearanceElements -> {}}, AnimationRunning -> True, AnimationRate -> v, AppearanceElements -> None]give what you need? $\endgroup$