Re: Manipulate without plus symbol
- To: mathgroup at smc.vnet.net
- Subject: [mg101310] Re: Manipulate without plus symbol
- From: Bob F <deepyogurt at gmail.com>
- Date: Wed, 1 Jul 2009 06:32:36 -0400 (EDT)
- References: <h2cpnr$ach$1@smc.vnet.net>
On Jun 30, 4:34 am, axel <axel.kil... at hs-merseburg.de> wrote: > Does anyone know how to get rid of the "plus" symbol in the top right > corner of Manipulate? I am writing a Demonstration which will run on a > public touchscreen terminal. Users should not be able to perform > "Paste Bookmarks", because that would mess up the demonstration. > > Thank you > > Axel You can use the option called "AppearanceElements- >HideControlsButton", e.g. Manipulate[Plot[Sin[x (1 + a x)], {x, 0, 6}], {a, 0, 2}, AppearanceElements -> HideControlsButton] -Bob