Before adding a Locator to a Manipulate, I can easily print or export the result using a context menu:

But after adding a Locator, I can't even get a context menu to appear. How do I enable graphics generated with Locators so that the context menu functionality is restored?
Manipulate[
Show[ParametricPlot[BezierFunction[{{0, 0}, c1, {1, 1}}][x], {x, 0, 1}]],
{{c1,{.2, .2}}, Locator}]
Manipulate, the same behaviour can be seen in a simpleGraphicsobject, as theLocatorintercepts all mouse events: try this:{Graphics[{Circle[]}], Graphics[{Circle[], Locator[{0, 0}]}]}. I'm thinking of an easier workaround than creating anEventHandlerin aDynamicModule... – István Zachar Oct 29 '12 at 20:20Deployedto make it unselectable so that there is no ambiguity as to whether a click meant "move the locator" or "select the figure". Have you tried clicking the+and selecting "Paste Snapshot"? – rm -rf Oct 29 '12 at 20:21DeployedtoFalsesomewhere when I disable the Locator? If so, it's not clear where. – orome Oct 29 '12 at 20:43