Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Any Way in Harlowe for Multiple Things to Happen at Once?

Hi all,

So I've got a choice that looks like this:
I was interested and felt pretty good about myself so I [googled an interview with
(print: $them's 2nd), to see if (print: $them's 1st) changed...]<H1| (click: ?H1)[(replace: ?H1)[(display: "1.A")]]

I didn't want to dreg up old memories so I [avoided the seventeen facebook posts about it on my newsfeed...]<H2|

and I'm trying to code it so when H1 is clicked on, it both displays '1.A' AND deletes everything after it (i.e., hook H2). Is this possible? Thanks!

Comments

  • Just add the things you want to happen to the container associated with your (click: ?H1)

    note: The following is formatted to make it easier to read, you can remove the extra space and line-breaks.
    (click: ?H1)[
    	(replace: ?H1)[(display: "1.A")]
    	(replace: ?H2)[]
    ]
    
Sign In or Register to comment.