Re: creating a palette of characters
- To: mathgroup at smc.vnet.net
- Subject: [mg82187] Re: creating a palette of characters
- From: Jerry <JLK2941 at yahoo.com>
- Date: Sun, 14 Oct 2007 06:12:26 -0400 (EDT)
- References: <fecalu$g0i$1@smc.vnet.net> <fefjo4$k9v$1@smc.vnet.net>
Sir, I pasted your code into a new notebook and executed it. I get NotebookObject[] where "Untitled-2" is in the square brackets. Somehow I expected to see a grid of buttons. Other responders seemed pleased with the results but I don't understand it. Did I do something wrong or did I just misunderstand what to expect? I'm using V6. Thanks. ens-Peer Kuska wrote: > Hi, > > CreatePalette[Grid[ > {{Button["[", > With[{nb = InputNotebook[]}, NotebookWrite[nb, "["]]], > Button["]", > With[{nb = InputNotebook[]}, NotebookWrite[nb, "]"]]]}, > {Button["{", > With[{nb = InputNotebook[]}, NotebookWrite[nb, "{"]]], > Button["}", > With[{nb = InputNotebook[]}, NotebookWrite[nb, "}"]]]}, > {Button["(", > With[{nb = InputNotebook[]}, NotebookWrite[nb, "("]]], > Button[")", > With[{nb = InputNotebook[]}, NotebookWrite[nb, ")"]]]}}] > ] > > will make a palette with [,],{,},(,) that are interted into you > active notbook. > > Regards > Jens > > rip pelletier wrote: >> hi, >> >> i could do this in v5 but not v6. what changed? >> >> i thought i would create a small palette of selected characters for a >> particular nb in v6. >> >> it used to be extremely easy to do. i did the same thing again: >> >> make a table, fill it with symbols, create palette from selection. >> >> looks lovely, but nothing happens when i click on a symbol. >> >> can someone tell me what i have to do differently? or is this change >> documented somewhere that i missed? >> >> vale, >> rip >> >