Re: Application starts but then shows black screen

2016-11-02 Thread mark goldin
t; > > > > -- > View this message in context: > http://apache-flex-users.2333346.n4.nabble.com/Application-starts-but-then-shows-black-screen-tp13991p14016.html > Sent from the Apache Flex Users mailing list archive at Nabble.com. >

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
his message in context: > http://apache-flex-users.246.n4.nabble.com/Application-starts-but-then-shows-black-screen-tp13991p14012.html > Sent from the Apache Flex Users mailing list archive at Nabble.com. >

Re: Application starts but then shows black screen

2016-11-02 Thread Nemi
. If you need it, do you have crossdomain.xml on proper place? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Application-starts-but-then-shows-black-screen-tp13991p14012.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

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
t; > > > > 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 &

Re: Application starts but then shows black screen

2016-11-01 Thread OmPrakash Muppirala
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 > > > > that summarize all issues ... > > > > > > > > Olaf > > > > > > > > > > > > > > > > -- > > > > View this message in context: > > > > http://apache-flex-users.246.n4.nabble.com/ > > > Application-starts-but-then-shows-black-screen-tp13991p13997.html > > > > Sent from the Apache Flex Users mailing list archive at Nabble.com. > > > > > > > > > >

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
by using your clients environment. > > > Instead of open several alerts it is maybe better to e.g. display a > list > > > that summarize all issues ... > > > > > > Olaf > > > > > > > > > > > > -- > > > View this message in context: > > > http://apache-flex-users.246.n4.nabble.com/ > > Application-starts-but-then-shows-black-screen-tp13991p13997.html > > > Sent from the Apache Flex Users mailing list archive at Nabble.com. > > > > > >

Re: Application starts but then shows black screen

2016-11-01 Thread OmPrakash Muppirala
af > > > > > > > > -- > > View this message in context: > > http://apache-flex-users.246.n4.nabble.com/ > Application-starts-but-then-shows-black-screen-tp13991p13997.html > > Sent from the Apache Flex Users mailing list archive at Nabble.com. > > >

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
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 > that summarize all issues ... > > Olaf > > > > -- > View this message in context: > http://apache-flex-users.246

Re: Application starts but then shows black screen

2016-11-01 Thread OK
that summarize all issues ... Olaf -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Application-starts-but-then-shows-black-screen-tp13991p13997.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Re: Application starts but then shows black screen

2016-11-01 Thread mark goldin
> > Olaf > > > > > > -- > View this message in context: > http://apache-flex-users.246.n4.nabble.com/Application-starts-but-then-shows-black-screen-tp13991p13995.html > Sent from the Apache Flex Users mailing list archive at Nabble.com. >

Re: Application starts but then shows black screen

2016-11-01 Thread OK
-but-then-shows-black-screen-tp13991p13995.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

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

Application starts but then shows black screen

2016-11-01 Thread mark goldin
We have flex 3 app compiled with 4.13 SDK. in our development environment everything works fine. But on the customer site some users are having problems running it in IE. The app starts loading showing a progress bar but then the whole screen becomes black. Any idea what that might be? Any