Squiffy goto section

Based on an atrribute xyz which = 3 I want to goto a section, but I do not want the user to click a link.
like ```

{if xyz=3:[[link]]}

the above will make the user click [[link]]
I would rather the program just take him there

Note:this was answered in the Squiffy forum and works fine. Two syntax traps are
it must be first in a section (no text before it), and there must be atleast 4 spaces at the
start of each line.

   if (squiffy.get("xyz") == 3) {
        squiffy.story.go("link");
    }
1 Like