Lets say I have Window component named myCustomWindow. Then I create new windows with:
var newWindow:myCustomWindow = new myCustomWindow();
newWindow.open();
myCustomWindow has public property named myProperty.
How to access myCustomWindow from NativeWindow? For example, how to do it in this loop:
for (var i:int = 0; i < NativeApplication.nativeApplication.openedWindows.length; i++)
{
if( NativeApplication.nativeApplication.openedWindows[i].myProperty == 25)
{
NativeApplication.nativeApplication.openedWindows[i].close();
}
//error, cause NativeWindow doesn't have myProperty
//how to access myCustomWindow.myProperty of this NativeWindow ?
}
This is one solution:
Create array and push() all windows in.
Accessing myProperty: