Hi,
I have found a issue when a user opens a link by rightclick in the editor and then "Open Link" due to our customformated links with $* characters.
I am trying to find a way to replace this characters before the link is opened.
Successfully catched the event in OnClientCommandExecuting but I guess it is to late there..
function OnClientCommandExecuting(editor, args) {
if (args.get_name() == "OpenLink") {
}
}