Enchant characters after link-reveal

Working with Harlowe3 and trying to understand the enchant macro for characters (making them type out). Is there a way to have the rest of the passage type out after a link-reveal? I managed to get it to work on click, but I would like it to happen on a link-reveal click instead of just anywhere on the screen, but can’t seem to work it out.

(enchant: ?passage’s chars, via (t8n-delay:pos * 30) + (t8n:‘instant’))

You can pass the (enchant:) macro Named Hooks other than the special ?passage one.

|message>[The quick brown fox jumps over the lazy dog]
(enchant: ?message's chars, via (t8n-delay: 1000 + (pos * 30)) + (t8n: "instant"))

The above combined with a (link-reveal:) macro call…

(link-reveal: "More")[{
	|message>[The quick brown fox jumps over the lazy dog]
	(enchant: ?message's chars, via (t8n-delay: 1000 + (pos * 30)) + (t8n: "instant"))
}]

Thank you, this is so obvious now!