Is it feasible to trigger an alert immediately after a window finishes loading?
I am using a create window function followed by an alert message, then returning.
function NewView() {
var self = Ti.UI.createWindow({});
alert("A basic or confirm alert will be shown");
return self;
}
Upon firing this code, the alert pops up but gets obscured by the window's background. I attempted setting the window background to 'transparent', but it had no effect.
Any suggestions would be appreciated, as I believe it is a straightforward issue that just needs some thought...