from ij.gui import GenericDialog gd = GenericDialog("How to cite the plugins") gd.addMessage("""If you use these plugins, please cite : Thomas LSV, Schaefer F and Gehrig J. Fiji plugins for qualitative image annotations: routine analysis and application to image classification [version 1; peer review: awaiting peer review] F1000Research 2020, 9:1248 https://doi.org/10.12688/f1000research.26872.1 Click the help button below to open the article page""") #URL = r"https://doi.org/10.12688/f1000research.26872.1" # strangely not working URL = r"https://f1000research.com/articles/9-1248" gd.addHelp(URL) gd.hideCancelButton() gd.showDialog()