Flash Detection Kit - Express Install

This is a discussion on "Flash Detection Kit - Express Install" within the Flash & Multimedia Forum section. This forum, and the thread "Flash Detection Kit - Express Install are both part of the Design Your Website category.


 Subscribe in a reader

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

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Dec 5th, 2007, 14:45
New Member
Join Date: Dec 2005
Location: Canada
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Flash Detection Kit - Express Install

Hi all

I have some flash movies inside html pages that require a minimum of flash 8 player to play them. I have been through the tutorial / document that comes with the flash detection kit but I can't get the express install to work. I can get the initial detection to work so it shows a message to go and download the player but I would rather take the user there automatically.

Has anyone else ever had problems with this and know any solutions, or a good tutorial that I can follow?

Thanks in advance.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Dec 5th, 2007, 17:57
TheSealPortalTeam's Avatar
User of Users

SuperMember
Join Date: May 2007
Location: Buffalo
Posts: 332
Blog Entries: 16
Thanks: 31
Thanked 1 Time in 1 Post
Re: Flash Detection Kit - Express Install

This should help you detect the flash version.

For head tag:
Code: Select all
<script language="Javascript">
<!--

var flashinstalled = 0;
var flashversion = 0;
MSDetect = "false";
if (navigator.plugins && navigator.plugins.length)
{
    x = navigator.plugins["Shockwave Flash"];
    if (x)
    {
        flashinstalled = 2;
        if (x.description)
        {
            y = x.description;
            flashversion = y.charAt(y.indexOf('.')-1);
        }
    }
    else
        flashinstalled = 1;
    if (navigator.plugins["Shockwave Flash 2.0"])
    {
        flashinstalled = 2;
        flashversion = 2;
    }
}
else if (navigator.mimeTypes && navigator.mimeTypes.length)
{
    x = navigator.mimeTypes['application/x-shockwave-flash'];
    if (x && x.enabledPlugin)
        flashinstalled = 2;
    else
        flashinstalled = 1;
}
else
    MSDetect = "true";

// -->
</Script>
For somewhere in your body (IE detection)

Code: Select all
<script language="javascript">if (flashinstalled==2) {document.write('&radic; Flash Player Version ' +flashversion +' Detected. Now I can send you some fun animations. <p>In case you did not know, Its good to stay current with the leading web application software (for now). If you get a Flash Icon on the bottom of your screen in the "Task bar" or an Adobe updater icon, its time you got the latest version. EGT makes it a point to utilize the newest technology, so stay ontop of it. The latest version is always downloadable from <a href="http://macromedia.com/download/getflash">this site.</a> Admin privileges required.</p>');} else {document.write('&times; Test Failed. You may not proceed. <p>You need the latest version of the Adobe Flash Player. It will be just a few moments of your time. EGT makes it a point to utilize the newest technology, so stay ontop of it. The latest version is always downloadable from <a href="http://macromedia.com/download/getflash">this site.</a> Admin privileges required.</p>');}</script>
It says EGT stuff in it, so remember to make the messages unique. Or put the flash in the first message and the message or an image on the other.

Note: redirectUri=''; was not needed, forgot to get rid of it.
Last Blog Entry: Social Bookmarking Sites and its affect on SEO (Oct 1st, 2008)

Last edited by TheSealPortalTeam; Dec 6th, 2007 at 13:02. Reason: redirectUri=''; was not needed, forgot to get rid of it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Dec 6th, 2007, 16:16
New Member
Join Date: Dec 2005
Location: Canada
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Flash Detection Kit - Express Install

Thanks for the scripts. I'll play around with it and see what I get.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Dec 6th, 2007, 16:41
TheSealPortalTeam's Avatar
User of Users

SuperMember
Join Date: May 2007
Location: Buffalo
Posts: 332
Blog Entries: 16
Thanks: 31
Thanked 1 Time in 1 Post
Re: Flash Detection Kit - Express Install

Good Luck!
Last Blog Entry: Social Bookmarking Sites and its affect on SEO (Oct 1st, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

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
Multi user support for SQL Server Express 2005 ish Databases 1 May 9th, 2007 16:51
Converting Access to SQL Express 2005 ish Databases 1 Apr 26th, 2007 22:26
Whats missing from Visual Web Developer Express gustava32 ASP.NET Forum 1 Mar 29th, 2007 16:53
how do you go strate to outlook express with the email address already there? ryall Web Page Design 5 Dec 15th, 2006 23:08


All times are GMT. The time now is 06:08.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization 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