Internet Explorer and the Active-X warning

This is a discussion on "Internet Explorer and the Active-X warning" within the Flash & Multimedia Forum section. This forum, and the thread "Internet Explorer and the Active-X warning are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jan 17th, 2006, 04:40
Junior Member
Join Date: Nov 2005
Age: 32
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Internet Explorer and the Active-X warning


I have a site here in which I have a couple of flash movies that need to download before playing. I used a pre-loader to hold off the playback until it is all downloaded. In the pre-loader I used the flash function getBytesLoaded() command. Is this the command the offends Internet Explorer? How else would I write the preloader?

Here is the code I used:

play();
var frames_loaded = _root.getBytesLoaded();
var frames_total = _root.getBytesTotal();
var countD = Math.round(10-(frames_loaded/frames_total*10));
if (countD == 0) {
countD = "1";
}
trace("frames_loaded = "+ frames_loaded);
trace("frames_total = "+ frames_total);
trace("countdown= "+_root.countdown.text);
if (frames_total == frames_loaded) {
_root.countD = "1";
trace("total frames loaded");
gotoAndPlay(3);
} else {
_root.countdown.text = countD;
}
Reply With Quote

Reply

Tags
internet, explorer, activex, warning

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
css internet explorer 6 firefox thosecars82 Web Page Design 2 May 19th, 2008 15:37
Internet Explorer 6.0 & 5.5 don't like me bodgit Web Page Design 0 May 10th, 2008 17:40
Internet Explorer 8 CloudedVision Webforumz Cafe 9 Feb 20th, 2008 23:05
Bloody Internet Explorer! JasonKing Web Page Design 2 Sep 8th, 2007 12:24
CSS Internet Explorer only Kropotkin Web Page Design 8 Sep 5th, 2007 12:34


All times are GMT. The time now is 03:41.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43