Hi,
I have following piece of code which shows animated gif and is working OK in firefox 3.6 but in InternetExplorer 8 it shows just static image. Do you know how to make it work also in IE?
SC_SNAPSHOT-2011-05-19
I have following piece of code which shows animated gif and is working OK in firefox 3.6 but in InternetExplorer 8 it shows just static image. Do you know how to make it work also in IE?
Code:
public class SpinnerWindow extends Window {
private SpinnerWindow() {
setShowCloseButton(false);
setShowMinimizeButton(false);
setIsModal(true);
setShowModalMask(true);
centerInPage();
setScrollbarSize(0);
setWidth(192);
setHeight(208);
Img image = new Img("loading.gif");
VLayout vl=new VLayout();
vl.setMembersMargin(3);
vl.setLayoutMargin(3);
vl.setHeight100();
vl.setWidth100();
vl.addMember(image);
addItem(vl);
}
Comment