Action

Go To Bookmark

Posted by agiletortoise, Last update about 3 years ago

Open a bookmarked draft in the editor.

This action will prompt you to select a draft from all drafts tagged with the “bookmarked” tag. Useful to quickly navigate to specific drafts you use often.

Meant as an example action demonstrating the use of the “Select Draft” prompt combined with a custom, temporary workspace.

To use a tag other than “bookmarked”, edit the tag variable in the ffirst line of the script.

Steps

  • script

    // configure tag used to identify bookmarked drafts
    let tag = "bookmarked"
    
    // create workspace
    let ws = new Workspace();
    ws.name = "Bookmarks";
    ws.tagFilter = tag;
    
    // prompt to select draft
    let d = app.selectDraft(ws);
    
    if (d) {
    	editor.load(d);
    	if (device.systemName == "iOS") {
    		app.hideActionList();
    	}
    }
    else {
    	context.cancel();
    }

Options

  • After Success Default
    Notification Error
    Log Level None
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.