|
|
Rank: Newbie Groups: Member
Joined: 8/18/2008 Posts: 3 Points: 9
|
I got a message for installing some Activex while IU gui loading in IE. Can I avoid this message for my users and Activex downloads without user interaction. Any help regarding this issue will be appreciated.
|
|
 Rank: Advanced Member Groups: Administration
, Member
Joined: 7/28/2003 Posts: 1,254 Points: -345 Location: WA, US
|
Quote:I got a message for installing some Activex while IU gui loading in IE. Can I avoid this message for my users and Activex downloads without user interaction. Any help regarding this issue will be appreciated. There is no way to avoid this security message as it is by Microsoft Internet Explorer design.
Best regards, Fedor Skvortsov
|
|
Rank: Newbie Groups: Member
Joined: 8/18/2008 Posts: 3 Points: 9
|
Actually we want Java uploader download to test for all browsers. We don't need any ActiveX for IE. How can I accomplish this so on all browsers we have Java uploader only.
|
|
 Rank: Advanced Member Groups: Administration
, Member
Joined: 7/28/2003 Posts: 1,254 Points: -345 Location: WA, US
|
Java applets by default doesn't have access to file system. In order to go out of Java sandbox the applets should be signed and request from user the permission for file access. That's why there is no avoid Java security message.
Best regards, Fedor Skvortsov
|
|
Rank: Newbie Groups: Member
Joined: 8/19/2008 Posts: 2 Points: 6
|
I guess the issue still is not clear.
We downloaded the trial version of the Uploader......and want to test ONLY the Java version in ALL browsers.
It's fine in FF and Safari.....but in IE....it is the ActiveX version that is coming up when we test. How do we force only the Java version to be active for IE users ?
Thanks. -Brian
|
|
 Rank: Advanced Member Groups: Administration
, Member
Joined: 7/28/2003 Posts: 1,254 Points: -345 Location: WA, US
|
Quote:It's fine in FF and Safari.....but in IE....it is the ActiveX version that is coming up when we test. How do we force only the Java version to be active for IE users ? I am sorry for misunderstanding. Just add in your code iu.activeXControlEnabled = false: Code:
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploader1", 610, 500);
iu.activeXControlEnabled = false;
...
</script>
It will force iuembed.js script to load Java applet only.
Best regards, Fedor Skvortsov
|
|
Rank: Newbie Groups: Member
Joined: 8/19/2008 Posts: 2 Points: 6
|
Excellent.
Thanks....I will pass this on to Rehman.
-Brian
|
|
|
Guest |