In previous versions of MMA there was a 'Save" icon in the toolbar when you do the "Show Toolbar" from the "Window" menu. This is not present in v9. Anybody know how to get it back?
Asked
Active
Viewed 317 times
1 Answers
2
As @halirutan posted in the comments of the original question one can build one's own toolbar. The documentation is quite clear and provides nice examples. As he stated, It can be found here.
However, I imagine that some might need help\don't want to take the time. And since I can't sleep, I've built a quick tool bar that includes some common options.
save = Button[ImageResize[(**your "save" image here**), {26, 19}],
FrontEndTokenExecute["Save"], Appearance -> None,
ImageSize -> {27, 20}];
saveas = Button[ImageResize[(**your "save as" image here**), {26, 19}],
FrontEndTokenExecute["SaveRename"], Appearance -> None,
ImageSize -> {27, 20}];
print = Button[ImageResize[(**your "print" image here**), {26, 19}],
FrontEndTokenExecute["PrintDialog"], Appearance -> None,
ImageSize -> {27, 20}];
labels = Style[#, 9, FontFamily -> "Helvetica"] & /@ {"Save",
"Save As", "Print"};
CreateWindow[
DockedCells ->
Cell[BoxData[ToBoxes[Grid[{{save, saveas, print}, labels}]]],
"DockedCell"]];
This will create a new window with the toolbar at the top, though only in the new window.
I did a bit of poking around and found where v9 defines its menu. I imagine you might be able to edit that file to add a permanent toolbar, but I'm unwilling to mess with it on my system and I wouldn't advise messing with it in general when the above code works nicely.
TDMX595
- 49
- 5
Palettewith a 'Save' button and possibly other menu commands. – Matariki Jan 03 '13 at 19:17WindowToolbars->{"EditBar"}is set. No luck. Wouldn't it be a possibility to build your own toolbar? I mean, this looks like not so much work. – halirutan Jan 04 '13 at 01:47