I’m trying to get my application launched by clicking on a link in the Calendar’s notes section, but I just can’t do it …
The URL schemes for http:// and mailto: are working in the notes section (Safari and Mail are started, respectively), but myapp:// does not work, and neither does skype:
myapp:// is working fine when I put it into the address field in Safari, so the custom URL scheme did install successfully.
Is the Calendar only implementing some standard URL schemes and not able to recognize any installed custom URL scheme? Or am I doing something wrong?
Ok, found it myself …
Apparently it is not enough to just write
but it has to be
in order for the calendar to recognize it as a custom URL scheme. Safari also accepts the version without text after the two slashes.
One never learns enough …