Hi Brook21679
If you are using multiple Shortcut controls on a single page,
you need to be aware that they are all named differently.
Naturally, the first one is named Shortcut. But the second is
normally named OBJECT1 or object1 depending on how it was inserted.
If it was inserted via the menu, it is named OBJECT1. If it was
copied and pasted, it is object1. The third is typically object2
(or OBJECT2) and so on. So your second (and subsequent) JavaScript
links should be named accordingly.
JavaScript:object1.Click(); or JavaScript:OBJECT1.Click(); or
JavaScript:object2.Click();
You should hover the control on the page and the name should
display in a tooltip.
Cheers... Rick