Close all formInDialog windows at once in 3.5

Now that the argument for application.closeFormDialog has been changed, have we lost the ability to close all formInDialog windows in one step? Currently, if I have stacked windows and do not pass a window name to closeFormDialog, it only closes the topmost window. Do I need to be storing open window names in an array and loop through it to close multiple windows?

Steve In LA

Servoy Developer
Version 3.5.2-build 515
Java version 1.5.0_07-87 (Mac OS X)

Are your dialogs named or unnamed? Are they modal or non-modal? Maybe it is best to detail a bit how you use these windows too.
The new implementation tried to keep old code working, and there are a few special situations that appeared due to this, that is why I am asking.

If you want to switch to the new approach completely, you should name all your dialogs to make their management clear - and this should work straight forward. That means looping on your named dialogs to close them all, yes. Or you could use the same named dialog and show different forms in it if you do not need multiple forms-in-dialogs open in the same time.