I have been expirementing developing a "transition" effect in GWT, that is made by fadeing out a 10x10 array of images in sequence. The fade's, individualy, work ok. But if more then one is attempted at a time I get this;
# # An unexpected error has been detected by Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x77f9d45a, pid=2388, tid=2212 # # Java VM: Java HotSpot(TM) Client VM (1.6.0_03-b05 mixed mode, sharing) # Problematic frame: # C [ntdll.dll+0x1d45a] # # An error report file with more information is saved as hs_err_pid2388.log # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # In my eclipse window. This is the first time have had this sort of problem, and it seems to point to a problem with Java itself no? My code is relatively simple, using the Style style = ThisImage.getElement().getStyle(); style.setProperty("filter", "alpha(opacity="+opacity+")"); style.setProperty("opacity", ""+(opacity/100)); Techique in a timer on an extended image object to trigger the fade, and then a loop triggering the fades in sequence. If I just detach rather then fade, it works. (and also makes a nice transition...), but as soon as the fader is used, I get the above crash notice. I have logged at the log file and cant make that much sense of it myself. Any advice for proceeding? Should I report to Sun? or is it likely a bug in Google? Or is it my fault in some way ;) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
