Flash Player 8 Issue
Posted in: zjnq.com Date: March 13th, 2010

Well, fellows, i got an issue here, and for as it seems, the way that i'm trying to resolve this, is not the most correct...
Allmost everytime i ask someone "so, what do you think about this web site?", the answer is allmost allways the same: "I'm sorry, but i can't see it correctly!...", because they don't have flash player 8 on their pc's.
Simple to resolve, right? That's what i though, so i just inserted this code here on html:
tag wont help if the swf is FP8, its only telling the browzer with plugin-version you're using.
so if you want everybody to see your site, you should make a script that checks witch FP-version the user has installed. Such a script should check if the user has FP8 or not. If not then they are sent to you own "please install flashplayer 8 webpage". If they have em, the are send to you "FP8-swf page"
:bounce:
Awsome, now i feel like this thread of mine made me look a real noob... more then i am! :crying: I'm not that noob... lol :nerd:
Ok, then, do you have that script? Can you show it to me?
its a piece of javascript that you place inside your index page
represents the FPversion:
var MM_contentVersion = 8;
This should be realy self explainable:
if ( MM_FlashCanPlay ) {
window.location.replace("flash.htm");
}
else{
window.location.replace("noflash.htm");
}
edit: Dont think that I understand the rest of the script :lol:
#If you have any other info about this subject , Please add it free.# |
