I want to generate a different random initial condition for rule 110 using a Button for Manipulate, not a slider. How can I make the slider invisible here? I tried specifying ControlType -> None, and made the Button disappear.
Manipulate[ SeedRandom[seed]; ArrayPlot[CellularAutomaton[110, RandomInteger[1, 600], 700]], { seed, 1, 1000, 1}, Button["Randomize initial condition", If [seed < 1000, seed = seed + 1, seed = seed - 1]]]
{seed, 1, 1000, 1, ControlType -> None}$\endgroup$