You could download Sideview Utils 2.0, which has a new module called SearchControls.
In appearance it looks like the JobStatus module, and you can give your users the ability to pause, play, cancel, finalize the job, or to save searches or alerts, or to create dashboards etc...
However it also has an export button, and unlike both JobStatus and ResultsActionButtons, you can configure it to only display the options that you want available.
So for instance you can strip it all the way down to just export, by doing:
<module name="SearchControls">
<param name="sections">export</param>
</module>
or you can give it the ability to export, print save searches, save results, but not the "save and share results" options:
<module name="SearchControls">
<param name="sections">export print saveMenu</param>
<param name="saveMenu">saveSearch saveResults</param>
</module>
I too was bitten by the disappearance of export from ResultsActionButtons, and for a while I replaced them all with heavily-patched JobStatus modules. But this was really clunky, and of course there was no 'export', so after a while I went back and implemented the SearchControls module.
... View more