Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Hybrid View

  1. #1

    Default adobe flash required message

    I need my site to display a sign that only appears to users who do not have flash installed, that the need to go to

    http://www.adobe.com/shockwave/downl...ShockwaveFlash

    and get flahs before using the site.

    Thank you!

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: adobe flash required message

    ...and if they don't feel like getting Flash installed, or for some reason can't, you don't want to sell to them?

    Best practice is to allow at least basic functional use to anybody visiting your site. You can enhance the experience with flash or javascript if you want, but there should be a way to use your site without them.

  3. #3
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Have a Drink Re: adobe flash required message

    Quote Originally Posted by canemasters View Post
    I need my site to display a sign that only appears to users who do not have flash installed, that the need to go to

    http://www.adobe.com/shockwave/downl...ShockwaveFlash

    and get flahs before using the site.

    Thank you!
    Don't remember how now, but 4 or 5 years ago I had a flash panel on a website, and had an "Alternate Image" for viewers that didn't have flash. It consisted of a static graphic that fit in the same place as the Flash presentation.
    Newest Site: ChargerPros - Stuff4Toys

  4. #4

    Default Re: adobe flash required message

    So it would be best practice to make an alternate .jpg header so users can at least get around... Sounds good. I'll have to make one, but that should be no problem. I'll worry how to make it work after I get it made.

    Thank you.

  5. #5
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Default Re: adobe flash required message

    Now this is several years old, not sure how it's done now. And based on Macromedia not Adobe Flash, but I would assume it's similar because this script still works. JOhn ><>

    Code:
     
    <MAP NAME="slideshow">
     <AREA COORDS="0,0,0,0" HREF="#">
    </MAP> 
     
     <SCRIPT language=JavaScript1.1>
     <!--
     if ( MM_FlashCanPlay ) {
      document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
      document.write('  codebase="http://download.macromedia.com/pub/s...ersion=6,0,0,0" ');
      document.write(' ID="script" WIDTH="460" HEIGHT="200" ALIGN="">');
      document.write(' <PARAM NAME=movie VALUE="http://www.trackermarine.com/gifs/PhotoPresentation.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=FF0000>  '); 
      document.write(' <EMBED src="http://www.trackermarine.com/gifs/PhotoPresentation.swf" quality=high bgcolor=FF0000  ');
      document.write(' swLiveConnect=FALSE WIDTH="460" HEIGHT="200" NAME="script" ALIGN=""');
      document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
      document.write(' </EMBED>');
      document.write(' </OBJECT>');
     } else{
      document.write('<IMG SRC="http://www.trackermarine.com/gifs/frontGraphic.jpg" WIDTH="460" HEIGHT="200" usemap="#slideshow" BORDER=0>');
     }
     //-->
     </SCRIPT><NOSCRIPT><IMG SRC="Noah_Images/BANNERS/frontGraphic[1].jpg" USEMAP="#slideshow" BORDER=0 width="460" height="200"></NOSCRIPT>
    Newest Site: ChargerPros - Stuff4Toys

  6. #6
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Default Re: adobe flash required message

    This part went at the top of the page just below the
    </head>
    <body>

    Code:
     
    <SCRIPT language=JavaScript1.1>
    <!--
    var MM_contentVersion = 6;
    var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
    if ( plugin ) {
      var words = navigator.plugins["Shockwave Flash"].description.split(" ");
         for (var i = 0; i < words.length; ++i)
         {
      if (isNaN(parseInt(words[i])))
      continue;
      var MM_PluginVersion = words[i]; 
         }
     var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
    }
    else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
       && (navigator.appVersion.indexOf("Win") != -1)) {
     document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag
     document.write('on error resume next \n');
     document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n');
     document.write('</SCR' + 'IPT\> \n');
    }
    //-->
    </SCRIPT>
    Newest Site: ChargerPros - Stuff4Toys

  7. #7

    Default Re: adobe flash required message

    Okay, I'm calling up my flash with:

    <script type="text/javascript" src="includes/templates/canemasters/jscript/jscript_swfobject.js"></script>
    <div id="flashcontent">
    <strong>You need to upgrade or install Adobe Flash Player in order to properly navigate our web site. VISIT --->
    <a href="http://www.adobe.com/go/getflashplayer" target="_blank">www.Adobe.com</a>
    </div></strong>
    <script type="text/javascript">
    var so = new SWFObject("includes/templates/canemasters/images/flash/header.swf", "header", "800", "185", "6", "#ffffff");
    so.write("flashcontent");
    </script>
    I've gone ahead and made a jpg of the header. What do I do to make it call up this .jpg file if they do not have a flash browser? I'm thinking I have to do it in the swfobject.js file...?

  8. #8

    Default Re: adobe flash required message

    Wow, this is really lame. I've tried the suggestions listed on this page, and noting is working. It simply wont load an alternate image if flash is not installed. I've tried the <noscript> function, but nothing is working. I'm thinking about taking the flash out of the site entirely. I'm not about to loose customers just because they don't have flash installed. @#*@!! It took me 2 weeks to finish that header!

  9. #9

    Default Re: adobe flash required message

    Okay, I found a site that is working exactly how I want it to. If a user doesn't have flash, a little popup appears from adobe asking them to install flash.

    http://www.moock.org/webdesign/flash...fpi/movie.html

    BUT IT'S FOR HTML!!! DOH! There aren't any php instructions.

  10. #10

    Default Re: adobe flash required message

    WOOHOO! FIXED IT!

    Used this code:

    <script type="text/javascript" src="includes/templates/canemasters/jscript/swfobject.js"></script>
    <object type="application/x-shockwave-flash" data="includes/templates/canemasters/images/flash/header.swf" width="800" height="185">
    <param name="movie" value="includes/templates/canemasters/images/flash/header.swf" />
    <img src="includes/templates/canemasters/images/header.jpg" width="800" height="185" alt="header" title="header"/></object>

    Now I just have to include an image map for the .jpg header
    I've done that before though.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Gift certificate decimal separator and required message field
    By jolion in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 2
    Last Post: 19 Jul 2010, 09:49 PM
  2. How do you use adobe flash with the zen cart?
    By cybervisoin designs in forum General Questions
    Replies: 2
    Last Post: 21 Feb 2010, 08:15 PM
  3. Error Message even when all required fields are filled
    By hsartcorp in forum Managing Customers and Orders
    Replies: 3
    Last Post: 8 Aug 2009, 09:07 PM
  4. detecting Adobe Acrobat
    By afo in forum General Questions
    Replies: 4
    Last Post: 12 Aug 2008, 08:02 PM
  5. Flash load fail message
    By lancaster in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 20 Sep 2007, 04:59 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg