What happens if you try:

Style style = temp.getElement().getStyle();
style.setProperty("filter", "alpha(opacity=65)");
style.setProperty("opacity", "0.65");

firebug will tell you what style is in force for each element

HTH
Paul



darkflame wrote:
> I'm trying to make a standard image have a code-dependant uniform
> transparency background, and for it to work across all browsers.
> Doing this in css is easy, and works, but GWT seems to not be having
> it.
>
> I'm using simply;
>
> temp.getElement().setAttribute("style", "filter: alpha(opacity=65);
> opacity: 0.65");
>
> Where temp is just an image.
>
> This doesn't seem to have any effect, but I'm not sure why.
> The same style code in CSS works, does it have to be different when
> applied this way? And what referance do I look at to see the changes
> made?
>
>   

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to