I have made a handy toolbar that provides access to menu items that are not visible when I F12 a workbook.
I would like to add the following function to a button in the toolbar:
magnification = 1.0;
SetOptions[SelectedNotebook[],
Magnification :> Dynamic[magnification] ];
Slider[Dynamic[magnification], {0.8, 2, .01}]
which gives me a Slider with more control over the notebooks magnification.

However, although I can put the Slider in a Button, when I add the Button to the row of docked cells, it won't do anything. Can this be made to work?
