Forum Discussion
edit the "invalid answer" look and feel
hi all,
I am able to edit the "correct/incorrect answer" dialog box in the Feedback master view. But I am unable to edit the "Invalid answer" dialog box. Please see the image below. Can anyone show me where to edit this "invalid answer" dialog box?
Thanks in advance.
Great news! We just released another update for Articulate 360, and included a few important fixes that you'll see in the release notes here.
The item you'll be interested in is:
Fixed: Audio tracks from multiple layers could play simultaneously, even when the layers weren't open.
Just launch the Articulate 360 desktop app on your computer and click the Update button for Storyline 360. Details here.
Please let us know if you have any questions, either here or by reaching out to our Support Engineers directly.
- AxelDitter-a8f7Community Member
Hello I have the problem, that i see "my feedback layer" PLUS the hard coded in articulate ---- how can I delete/hide/take it to the rubbish bin ---??
cheers
Axel
Hi Axel,
If you need to delete any of the layers shown, you'll use the little trash icon to remove them:
- AxelDitter-a8f7Community Member
Thank you very much. Bypassing is OK - but i would like to present a feedback "please answer this question" but in my design ... (without this hard coded one from Articulate" at the meoment i have both ...
cheers
Axel
Bypassing this message at all is gr
- Jean-Christo203Community Member
The way I bypass the Invalid answer prompt is by using a variable linked to the states of whatever buttons or boxes I use for questions.
- Show [custom] layer "Invalid Answer" when User click on Submit if Variable is False.
- Adjust Variable to True is State of box and buttons is Selected.
- Submit Interactions when User click on Submit if Variable is True.
- The corresponding feedbacks appear.
I will reiterate that the lack of options to manually edit the Invalid Feedback when every other feedback can be edited via the Masters is just puzzling. I'm sure that it isn't as hard to implement as other features, right?
Same with the Resume Course prompt.
- AxelDitter-a8f7Community Member
Hello
I do not really understand, why the "invalid feedback" layer is impossible to edit. why? this is just like the others "right" or "wrong".
If i try to customiz it: the old Articulate feedback windows still appear - this is not the way i wan t it.
cheers
Axel Hi Axel!
You've almost got it. You just need a small adjustment to your trigger conditions.
Check out the changes I made to your file, and let me know what you think!
- AxelDitter-a8f7Community Member
Thanks a lot!!!!
great support!!!
Thank you so much for your help.
axel
Hi Fiona,
Really sorry for the trouble. We're seeing an issue in Storyline 360 where JAWS does not read Invalid Answer text. This bug only affects the Modern Player – the same problem doesn't happen in the Classic player. We'll be sure to update you on our progress with this bug as we make changes.
- TomDalgaardPeteCommunity Member
Hi, you make a variable, call a javascript and bypass the submit if no selection is made.
Her is the shript I made:
var player = GetPlayer();
player.SetVar("checked", 0);
if(document.querySelector('[aria-checked="true"]')){
player.SetVar("checked", 1);
}