Custom Feedback Slide not working as expected (triggers)

Jan 23, 2024

Hi team,

Hoping to get some assistance. The intended quiz layer is not presenting as expected. The incorrect layer is supposed to appear, but the incorrect ninja appears on every occasion despite the true/false variable being correct.

 

Thank you for your help.

Sevana 

 

 

2 Replies
Steven Benassi

Hi Sevana!

It sounds like you've hit a snag with custom feedback layers from your Storyline course. Sorry to hear that, but I'd be happy to assist!

It would be easier to troubleshoot the behavior if we could test the .story file on our end. Would you be comfortable sharing a copy here in the discussion or privately through a support case?

We'll delete it from our system as soon as we're finished!

Walt Hamilton

It looks like you want the incorrect-Ninja layer to show if any object is not selected, and at the same time Ninja is false. The way the triggers are written now, that only happens if any object is not selected (without regard to the value of codeninja) OR if ZH! is not selected and Ninja = false. Right now, codeninja = false is connected only with ZH 1 being selected. You need to put a condition that says AND codeninja = false after each of the object conditions:

if COC is not selected

AND codeninja = false     // the AND connects these two conditions. You need both of them to parse to true at the same time, so you have to connect them with the AND.

Or LB1 is not selected

AND codeninja = false, etc.

You also need to do the same thing with the codeninja = true trigger.