Index: lams_central/conf/language/lams/ApplicationResources.properties =================================================================== diff -u -r9b8cc26765417af1609c8fcf728c0a3488ed663c -reca58cfd83edeb38501cabebe1069ef97345082a --- lams_central/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 9b8cc26765417af1609c8fcf728c0a3488ed663c) +++ lams_central/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision eca58cfd83edeb38501cabebe1069ef97345082a) @@ -516,6 +516,7 @@ authoring.fla.paste.error =Sorry, you can not paste this type of activity authoring.fla.preview.error =Error while initialising lesson for preview authoring.fla.cross.branching.error =Cross-branching transitions are not allowed +authoring.fla.support.transition.error =Support activities can not be connected to any other activity authoring.fla.end.match.error =: a branch that ends in this branching does not start in it authoring.fla.ok.button =OK authoring.fla.cancel.button =Cancel Index: lams_central/web/authoring/authoring.jsp =================================================================== diff -u -rb9508cfb452160d9adc3d74a3ab3c8ec8ccaac19 -reca58cfd83edeb38501cabebe1069ef97345082a --- lams_central/web/authoring/authoring.jsp (.../authoring.jsp) (revision b9508cfb452160d9adc3d74a3ab3c8ec8ccaac19) +++ lams_central/web/authoring/authoring.jsp (.../authoring.jsp) (revision eca58cfd83edeb38501cabebe1069ef97345082a) @@ -182,6 +182,8 @@ PREVIEW_ERROR : decoderDiv.html('').text(), CROSS_BRANCHING_ERROR : decoderDiv.html('').text(), + + SUPPORT_TRANSITION_ERROR : decoderDiv.html('').text(), END_MATCH_ERROR : decoderDiv.html('').text(), Index: lams_central/web/includes/javascript/authoring/authoringActivity.js =================================================================== diff -u -rb9508cfb452160d9adc3d74a3ab3c8ec8ccaac19 -reca58cfd83edeb38501cabebe1069ef97345082a --- lams_central/web/includes/javascript/authoring/authoringActivity.js (.../authoringActivity.js) (revision b9508cfb452160d9adc3d74a3ab3c8ec8ccaac19) +++ lams_central/web/includes/javascript/authoring/authoringActivity.js (.../authoringActivity.js) (revision eca58cfd83edeb38501cabebe1069ef97345082a) @@ -882,6 +882,7 @@ // no transitions to/from support activities if (toActivity instanceof ActivityDefs.FloatingActivity || fromActivity instanceof ActivityDefs.FloatingActivity){ + alert(LABELS.SUPPORT_TRANSITION_ERROR); return; }