From: Bruce S. <Bru...@nc...> - 2009-01-12 19:44:30
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> Thanks, Scott! Your observation should be a good big hint at where the problem lies, though I don't yet see where this leads.<br> <br> Bruce Sherwood<br> <br> Scott David Daniels wrote: <blockquote cite="mid:gkg29d$dlo$1...@ge..." type="cite"> <pre wrap="">Bruce Sherwood wrote: </pre> <blockquote type="cite"> <pre wrap="">.... Here's the nub of the problem: The following crashes hard, at least on Vista (and on XP): f = frame() b = box(frame=f) b.opacity=0.3 The following doesn't crash: f = frame() b = box(frame=f, opacity=0.5) b.opacity=0.3 </pre> </blockquote> <pre wrap=""><!----> Checking a bit further, the following crashes: > f = frame() > p = sphere(frame=f, opacity=1) > p.opacity = 0.99 > The following doesn't crash: > f = frame() > p = sphere(frame=f, opacity=0.99) > p.opacity = 1 > p.opacity = .3 > p.opacity = 0 So, a work-around is to create things you expect to tweak opacity on as .99 opacity. This doesn't get to the root cause, but does let you move on. --Scott David Daniels <a class="moz-txt-link-abbreviated" href="mailto:Sco...@Ac...">Sco...@Ac...</a> ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. <a class="moz-txt-link-freetext" href="http://p.sf.net/sfu/sf-spreadtheword">http://p.sf.net/sfu/sf-spreadtheword</a> _______________________________________________ Visualpython-users mailing list <a class="moz-txt-link-abbreviated" href="mailto:Vis...@li...">Vis...@li...</a> <a class="moz-txt-link-freetext" href="https://lists.sourceforge.net/lists/listinfo/visualpython-users">https://lists.sourceforge.net/lists/listinfo/visualpython-users</a> </pre> </blockquote> </body> </html> |