3 var currentAppModal, currentFullScreen;
4 currentAppModal = SCModalWindow.current;
5 currentAppModal.notNil.if({
7 "An instance of SCModalWindow was aborted".warn;
9 GUI.window.allWindows.do({|window|
10 window.isKindOf(SCModalSheet).if({
12 "An instance of SCModalSheet was aborted".warn;
16 currentFullScreen = SCWindow.currentFullScreen;
17 currentFullScreen.notNil.if({currentFullScreen.endFullScreen; currentFullScreen.close});
21 var currentFullScreen;
22 currentFullScreen = SCWindow.currentFullScreen;
23 currentFullScreen.notNil.if({currentFullScreen.endFullScreen;});