Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
jspencerjsite  
#1 Posted : Thursday, November 12, 2009 12:40:15 PM(UTC)
jspencerjsite

Rank: Newbie

Groups: Member
Joined: 11/12/2009(UTC)
Posts: 2

How do I force the Java applet to load regardless of browser type?
jspencerjsite  
#2 Posted : Thursday, November 12, 2009 12:49:44 PM(UTC)
jspencerjsite

Rank: Newbie

Groups: Member
Joined: 11/12/2009(UTC)
Posts: 2

I figured this out
in the following function I set
this.activeXControlEnabled = false;
instead of true.
Is this the proper approach?

function BaseWriter(id, width, height) {
this._params = new Object();
this._events = new Object();
this._extenders = new Array();
this._autoCallback = 0;

//Public

this.id = (id == undefined) ? "" : id;
this.width = (width == undefined) ? 400 : width;
this.height = (height == undefined) ? 300 : height;

this.activeXControlEnabled = false;
this.activeXControlVersion = "";

this.javaAppletEnabled = true;
this.javaAppletCodeBase = "./";
this.javaAppletCached = true;
this.javaAppletVersion = "";

this.browserNotSupported = "Your browser is not supported.";

this.fullPageLoadListenerName = null;

this.javaVersionRequired = "1.5.0";
}
Tamila  
#3 Posted : Thursday, November 12, 2009 10:30:22 PM(UTC)
Tamila

Rank: Advanced Member

Groups:
Joined: 3/9/2008(UTC)
Posts: 554

Was thanked: 1 time(s) in 1 post(s)
Hi,
Quote:
I figured this out
in the following function I set
this.activeXControlEnabled = false;
instead of true.
Is this the proper approach?

Yes, you are right. If you want to disable ActiveX control and run Java applet in IE you should use this code:
Code:
activeXControlEnabled = false;

Aurigma Support Team

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.