

#LAUNCH CENTER PRO OMNIFOCUS GENERATOR#

The beauty of URL schemes is, in many cases, they are cross platform. You can add multiples of these with &, so if we want to add a note to our Pick up milk task, we could do this: omnifocus:///add?name=Pick%20up%20milk¬e=Low%20fat Everything after this is the information it needs to run the command in the format of parameter=value. Information is passed into the app, and the part before this is the command it will run. The question mark in our URL scheme marks the start of the parameters. Two tricks to make your life easier: If you’re on iOS and using Shortcuts to open the URL, you don’t need to URL-encode anything written in the URL action, and if you’re not using Shortcuts you can URL-encode your text either with Shortcuts, Keyboard Maestro, or online services. Now when we open the URL, a task is added to OmniFocus with the name Pick up milk. In this case, it means all the spaces need to be replaced with %20.

So, reading along we can see that we’re talking to OmniFocus and telling it to add - something with the name Pick%20up%20milk, which is URL-encoded - a system which makes text safe to put in URLs so the characters don’t break our URL.
#LAUNCH CENTER PRO OMNIFOCUS HOW TO#
Now we know how to address the app we need to do something! Usually, the apps with URL schemes that start with just two forward slashes are followed by x-callback-url, but as every app implements their own system, it may vary. You start by specifying which application you want to talk to: omnifocus:///Īs you can see here, there are some variations in the way this works. You may also have seen tel and mailto links, which tell your device that it should call a number or open an email to an email address. This tells your device that the link should be opened in a web browser. You’ve seen web addresses before, they start with http or https, which stands for Hypertext Transfer Protocol. URL Schemes sound complex - and I’ll admit, they’re not the easiest to read when you first come across them – but if you know how they work, you’ll find they’re not too hard to understand! Let’s start at the beginning. You might think that the recent advances in Shortcuts on iOS has killed the previous method of using URL schemes, and while there’s no arguing that Shortcuts - especially those with parameters like on iOS 13 - are more user friendly, not every app developer has had a chance to implement them yet or will have done so by the time iOS 13 launches.
