Re: Application starts but then shows black screen

2016-11-02 Thread mark goldin
Ok, thanks. On Wed, Nov 2, 2016 at 1:16 PM OK wrote: > > What is firing that event? > > > http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/SecurityErrorEvent.html#includeExamplesSummary > > HTH, > Olaf > > > > > -- > View this message in

Re: Application starts but then shows black screen

2016-11-02 Thread OK
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/events/SecurityErrorEvent.html#includeExamplesSummary HTH, Olaf -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Application-starts-but-then-shows-black-screen-tp13991p14016.html Sent

Re: Application starts but then shows black screen

2016-11-02 Thread mark goldin
At this point all I know is it's all black. On Wed, Nov 2, 2016 at 11:02 AM Nemi wrote: > So, is it all black? Or, as you say many Alerts popup, than you should see > alerts each one on top of others? > What error is within Alerts? > > What is OS with the IE that is not

Re: Application starts but then shows black screen

2016-11-02 Thread Nemi
So, is it all black? Or, as you say many Alerts popup, than you should see alerts each one on top of others? What error is within Alerts? What is OS with the IE that is not working? OS/browser Connection limits? Although I think, if there are such limits, Flex queues calls. Maybe

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
wrote: > I dont know. It's not happening in development. I will have to add logging > info an find a user who gets the problem consistently. > Plus, regulations do not allow copying any file without IT. And that will > take a while to get approved. > > On Tue, Nov 1, 2016 at 3:36 PM Clint M

Re: Application starts but then shows black screen

2016-11-01 Thread Clint M
you might also want to handle the securityError event On Tue, Nov 1, 2016 at 9:49 AM, mark goldin wrote: > Seems like a reason for the problem might be because of getting too many > alert.show() going one after another. > When application starts I am loading some images.

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
I dont know. It's not happening in development. I will have to add logging info an find a user who gets the problem consistently. Plus, regulations do not allow copying any file without IT. And that will take a while to get approved. On Tue, Nov 1, 2016 at 3:36 PM Clint M

Re: Application starts but then shows black screen

2016-11-01 Thread Clint M
What's the actual error in event.text and id in event.id? On Tue, Nov 1, 2016 at 9:49 AM, mark goldin wrote: > Seems like a reason for the problem might be because of getting too many > alert.show() going one after another. > When application starts I am loading some

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
I wish. It's on a customer site. And users are not the most advanced ones.It's just pain and frustration I dont mind to fortify my code just to make it work better in IE. Any idea for an alternative way of loading images consecutively? On Tue, Nov 1, 2016 at 3:04 PM OmPrakash Muppirala

Re: Application starts but then shows black screen

2016-11-01 Thread OmPrakash Muppirala
On IE, you can see the network traces by hitting F12 (Network tab). With your app running, see what the network calls and responses look like. On Tue, Nov 1, 2016 at 1:00 PM, mark goldin wrote: > Unfortunately, it's much worse than that. The images are out there, Chrome

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
Unfortunately, it's much worse than that. The images are out there, Chrome has no problem. It's this cretinous IE that has a problem. Some systems will work after clearing cache, restarting, and who knows what else, some will not no matter what users do. On Tue, Nov 1, 2016 at 2:32 PM OmPrakash

Re: Application starts but then shows black screen

2016-11-01 Thread OmPrakash Muppirala
Have you tried opening one of the image urls in IE and see if it works? Simply open the url in the address bar and see if it works. If it errors out or not, either way that should tell you something. Thanks, Om On Tue, Nov 1, 2016 at 12:05 PM, mark goldin wrote: > Yes,

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
Yes, of course, I could have raised just one message box or handle it somehow else (I did not expect to have any problem downloading images at all). My real concern is why some systems are not downloading it successfully? What might additional code be to "help" Flex to accomplish that task? The

Re: Application starts but then shows black screen

2016-11-01 Thread OK
You are probably right, it is so hard to read the code on the list and I have just a tablet here at the moment. If you have the chance I would debug if the service requests work properly by using your clients environment. Instead of open several alerts it is maybe better to e.g. display a list

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
Yes, I understand that and I thought my code is working in a way to handle async processes. PreloadImages() is called for the first time and then it's called again from PreloadImage_CompleteHandler when a download is complete. Is that is not a case? On Tue, Nov 1, 2016 at 1:14 PM OK

Re: Application starts but then shows black screen

2016-11-01 Thread OK
Hi, I've not taken a deep look at you code but it seems to me that this is a async issue: If your inhouse network is fast enough maybe your http calls will handled in a synchronous fashion without any problems, but that's just accidentally. Keep in mind that http calls are asynchronous. If your

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
Seems like a reason for the problem might be because of getting too many alert.show() going one after another. When application starts I am loading some images. Here is relevant code: private var imageArrayIndex:int = 0; public function PreloadImages():void { imageArrayIndex++; var

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
Great, will try. On Tue, Nov 1, 2016 at 10:48 AM Clint M wrote: > Some ideas: > > - compile the app with -verbose-stacktraces=true > - get them to install the debug player… it'll show a dialog when an error > occurs > - or you could trap the uncaughtErrorEvent and display a

Re: Application starts but then shows black screen

2016-11-01 Thread Clint M
Some ideas: - compile the app with -verbose-stacktraces=true - get them to install the debug player… it'll show a dialog when an error occurs - or you could trap the uncaughtErrorEvent and display a message ( http://stackoverflow.com/a/6597046/3384609) Sometimes a null pointer in flex's