Shockwaveの再生が始まる前に、Shockwaveのバージョンを知りたい場合がある。例えば、Director MX2004 でパブリッシュした コンテンツは Shockwave Player 8.5では正しく再生されない可能性がある。再生する前に、アップデートを促したい。Directorの HTML書き出しテンプレートに「Shockwaveを検知」ってあるけど、あれはShokwaveがインストールされてるかどうかだけの判断で、大抵はバージョンを判定してどうするの?っていう方が汎用性がある。ということで、
指定したバージョン以上の Shockwave Playerがインストールされていたら再生する Javascriptを書いた。元ネタは Director TechNote。でもここのヤツだと 同じバージョンしか検出できない。実際は、指定したバージョン以上なら 問題ないと思うので改編。
var tMajorVersion = 10; var tMinorVersion = 1; var tShockwaveFound = 0; if (navigator.mimeTypes && navigator.mimeTypes["application/x-director"] && navigator.mimeTypes["application/x-director"].enabledPlugin) { if (navigator.plugins && navigator.plugins["Shockwave for Director"] && (tVersionIndex = navigator.plugins["Shockwave for Director"].description.indexOf(".")) != - 1) { var tMajorVersionString = navigator.plugins["Shockwave for Director"].description.substring(tVersionIndex-2, tVersionIndex); var tMinorVersionString = navigator.plugins["Shockwave for Director"].description.substring(tVersionIndex+1, tVersionIndex+2); if (parseInt(tMajorVersionString) > tMajorVersion) { tShockwaveFound = 1; } else if (parseInt(tMajorVersionString) == tMajorVersion) { if (parseInt(tMinorVersionString) >= tMinorVersion) { tShockwaveFound = 1; } } } } else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0 )) { var tVersionString = ""; document.write('<SCRIPT LANGUAGE=VBScript\> \n'); document.write('on error resume next \n'); document.write('set tSWControl = CreateObject("SWCtl.SWCtl") \n'); document.write('if IsObject(tSWControl) then \n'); document.write('tVersionString = tSWControl.ShockwaveVersion("") \n'); document.write('end if'); document.write('</SCRIPT\> \n'); if (tVersionString != "") { var tVersionIndex = tVersionString.indexOf(".") var tMajorVersionString = tVersionString.substring(tVersionIndex-2, tVersionIndex); var tMinorVersionString = tVersionString.substring(tVersionIndex+1, tVersionIndex+2); if (parseInt(tMajorVersionString) > tMajorVersion) { tShockwaveFound = 1; }else if (parseInt(tMajorVersionString) == tMajorVersion) { if (parseInt(tMinorVersionString) >= tMinorVersion) { tShockwaveFound = 1; } } } } // これ以降は、適当に代えてください。 if ( tShockwaveFound ) { document.write('<OBJECT classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000"'); document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,1,0,11"'); document.write(' ID=$TI WIDTH=$WI HEIGHT=$HE>'); document.write('<PARAM NAME=src VALUE="$MO">'); document.write('<PARAM NAME=swStretchStyle VALUE=$SS>'); document.write('<PARAM NAME=swRemote VALUE="'); document.write("$PR"); document.write('">\n'); document.write('<EMBED SRC="$MO"'); document.write(' $PE WIDTH=$WI HEIGHT=$HE swStretchStyle=$SS '); document.write('swRemote="'); document.write("$PR"); document.write('"'); document.write(' TYPE="application/x-director" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveDirector">'); document.write('</EMBED>'); document.write('</OBJECT>'); } else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)){ document.write('<table bgcolor="#FFFF66">'); document.write('<tr><td>Please update your Shockwave installation.</td></tr>'); document.write('<tr><td>このコンテンツを表示するために必要なShockwaveバージョンがありません。新しいバージョンに更新してください。</td></tr>'); document.write('<tr><td><a href="http://www.macromedia.com/shockwave/download/?P1_Prod_Version=Shockwave&P5_Language=Japanese&Lang=Japanese">Shockwaveについて</a></td></tr>'); document.write('</table>'); }
Directorのフォルダの中に、(Configuration) > Publish Templates > Detect.html というHTMLがある。 Director MXでパブリッシュするなら、バージョンは 8,5,1,0だったかな。ちょっと忘れたけど。tMajorVersionと tMinorVersionに判定したいバージョンを入れておくと、条件分岐が終わった後に tShockwaveFoundに 1か 0が入るのでそれからどうするのかはご自由に。ちなみに、このまま Detect.htmlのjavascript部分を代えるとそのまま使える(と思う)。
汎用サンプル
8.5以上ならOK
http://www.eee-craft.com/contents40/swversion.js
10.1以上ならOK
http://www.eee-craft.com/contents40/swversion10.js
10.1.1.r16以上ならOK
http://www.eee-craft.com/contents40/swversion1011.js
Trackbacks/Pingbacks (Trackback URL)
Comments
-
MobileMonop said December 19, 2010 11:23
Hey guys i wish to share with you a way i make $500 every day and i only spend 15 minutes doing it a day! Anyone can do it, you dont NEED to have a website. I strongly recommend you check their site out as there is really a brilliant video that explains every thing you need to know. Check them out at http://mobile-mastermind.com. That's the name of the System and i suggest if you own a web site that you at-least go and take a peak, you wont regret it...
-
TomRenalds said December 27, 2010 11:29
rhsxjwlrl http://crush-the-castle.com Crush The Castle
-
MobiMon said December 28, 2010 09:28
Hey guys i wish to share with you a way i make $500 every day and i only spend 15 minutes doing it a day! Anyone can do it, you dont NEED to have a website. I strongly suggest you check their site out as there is really a brilliant video that explains each thing you need to know. Check them out at http://mobile-mastermind.com. That's the name of the System and i recommend if you own a web site that you at-least go and take a peak, you wont regret it... http://mobile-mastermind.com
-
MobiMons said December 29, 2010 04:30
Hi, Just returned here to advise you regarding Mobile Monopoly. It is a great system and WILL make you money, especially seeing as you own a website. Take a quick look at their video, the strategy is about using Mobile Advertising which is fresh and an unexposed market where you can make thousands by doing hardly any work. I promise you that after you watch their short video it will change you and it will start making you think. http://mobile-mastermind.com
-
CeliaRemalask said December 29, 2010 14:49
Sick of obtaining low numbers of useless traffic to your site? Well i wish to share with you a brand new underground tactic that makes myself $900 each day on 100% AUTOPILOT. I possibly could be here all day and going into detail but why dont you just check their site out? There is really a great video that explains everything. So if your serious about producing effortless money this is the site for you. http://www.autotraffic-avalanche.org
-
CeliaRemalask said December 31, 2010 03:48
Tired of getting low amounts of useless traffic to your site? Well i want to tell you about a brand new underground tactic that makes myself $900 each day on 100% AUTOPILOT. I really could be here all day and going into detail but why dont you just check their site out? There is a great video that explains everything. So if your seriously interested in producing easy money this is the site for you. http://www.autotraffic-avalanche.org
-
CeliaRemalask said January 01, 2011 15:13
Sick and tired of getting low amounts of useless traffic for your site? Well i want to share with you a brand new underground tactic which makes me personally $900 each day on 100% AUTOPILOT. I could be here all day and going into detail but why dont you simply check their site out? There is a excellent video that explains everything. So if your seriously interested in producing quick money this is the website for you. http://www.autotraffic-avalanche.org
-
CeliaRemalask said January 02, 2011 21:37
Tired of getting low numbers of useless traffic to your site? Well i wish to inform you of a fresh underground tactic that produces me personally $900 every day on 100% AUTOPILOT. I could truthfully be here all day and going into detail but why dont you merely check their website out? There is really a great video that explains everything. So if your seriously interested in making easy money this is the website for you. http://www.autotraffic-avalanche.org
-
MobileMonopolies said January 09, 2011 02:29
Hi, Just returned here to remind you regarding Mobile Monopoly. It is a great system and WILL make you money, especially seeing as you own a web site. Take a quick look at the video, the system is about using Mobile Advertising which is brand new and an unexposed market where you can make thousands by doing hardly any work. I promise you that after you watch their short video it will change you and it will start making you think. http://mobile-mastermind.com
-
CeliaRemalask said January 18, 2011 04:49
nconffafo http://www.free-mass-traffic.net/free-mass-traffic/free-mass-traffic-review Free Mass Traffic
-
CeliaRemalask said January 19, 2011 11:50
Hey, This is a message to the website owner. Please check out my friends website, he is offering a very good service that you may be intrested in. Does your website gain hardly any visitors or not rank for keywords you want it to rank for with Google? Well he can help! He can provide you with tens of thousands of backlinks to your site! Take a quick look as im sure you will be intrested. http://hellomotow.net/backlinks/
-
Avasystynccag said January 31, 2011 07:02
Hi, i just wanted to come here to show you about a very cheap service that posts comments similar to this on millions of Wordpress blogs. Why you might ask, well you might wish to sell a product or service and target webmasters or merely just improve the quantity of backlinks your website has that will increase your Google rankins which will then bring your website much more traffic and cash. Take a fast take a look at this web site for much more info. http://hellomotow.net/backlinks
-
Avasystynccag said February 04, 2011 12:12
Hi, i simply needed to come here to show you of a seriously inexpensive service that posts comments similar to this on millions of Wordpress blogs. Exactly why you might ask, well you might wish to sell something and target webmasters or merely just improve the quantity of backlinks your website has which will improve your Google rankins which will then bring your web site much more traffic and cash. Take a quick look at this web site for much more information. http://hellomotow.net/backlinks
-
irrediaby said February 05, 2011 10:13
Hi, I left you a DOFOLLOW backlink on my website. This isnt a spam message, i actually did leave you a backlink on my site. If you check the top of the page you will see "Sites we like" and there will be a link to this site. Would you be kind enough to leave me a backlink? If so my website is http://crush-the-castle.com please use the anchor text "Crush The Castle" for the link and add it to a post or as a widget. Then please send me a email at backlink@crush-the-castle.com - If you want me to change your links anchor text let me know. Thanks
-
CeliaRemalask said February 10, 2011 00:37
Fed up with getting low amounts of useless visitors to your website? Well i wish to inform you of a new underground tactic that produces myself $900 each day on 100% AUTOPILOT. I possibly could be here all day and going into detail but why dont you simply check their site out? There is a great video that explains everything. So if your serious about producing hassle-free money this is the site for you. http://www.autotraffic-avalanche.org
-
CeliaRemalask said February 11, 2011 12:34
Tired of obtaining low amounts of useless visitors for your website? Well i wish to let you know about a brand new underground tactic that makes myself $900 every day on 100% AUTOPILOT. I could be here all day and going into detail but why dont you just check their site out? There is really a great video that explains everything. So if your seriously interested in making quick cash this is the website for you. http://www.autotraffic-avalanche.org
-
Avasystynccag said April 20, 2011 14:11
Hi, i just needed to come here to let you know about a seriously cheap service that posts comments such as this on millions of Wordpress blogs. Why you may ask, well you might wish to sell a product and target webmasters or merely just increase the amount of backlinks your web site has that will improve your Google rankins which will then bring your web site much more visitors and cash. Take a quick look at this web site for more information. http://hellomotow.net/backlinks
-
Avasystynccag said April 22, 2011 01:55
Hi, i simply wanted to come here to show you of a very inexpensive service that posts comments like this on millions of Wordpress blogs. Just why you may ask, well you might want to sell something and target webmasters or simply just improve the quantity of backlinks your web site has which will increase your Google rankins which will then bring your web site much more traffic and money. Take a fast look at this web site for more information. http://hellomotow.net/backlinks
-
CeliaRemalask said May 02, 2011 03:11
Sick of getting low numbers of useless traffic for your website? Well i wish to share with you a new underground tactic that produces myself $900 each day on 100% AUTOPILOT. I possibly could be here all day and going into detail but why dont you simply check their website out? There is really a excellent video that explains everything. So if your seriously interested in producing quick cash this is the site for you. http://www.autotraffic-avalanche.org
-
SpeemsAbere said August 03, 2011 10:18
Hey i just came here to let you know about a service i offer. I offer cheap backlinks that can help you website rank significantly better on Google. Traffic is everything and to get decent traffic you need to rank well in the search engines. My service can help provide that, check out my site http://hellomotow.net/backlinks
-
FluoroAssotly said August 08, 2011 17:11
Hi webmaster I want to let you now about Income Hybrid. It's great software that can earn you thousands per month by exploiting 700 MILLION targeted visitors. I have banked over $4,000 from this within the first two weeks. Take a quick look at this site I promise you wont regreat it. http://www.income-hybrid.net
-
SpeemsAbere said August 14, 2011 06:20
Hey i just came here to let you know about a service i offer. I offer cheap backlinks that can help you website rank significantly better on Google. Traffic is everything and to get decent traffic you need to rank well in the search engines. My service can help provide that, check out my site http://hellomotow.net/backlinks
-
private guide in Saint-Petersburg said August 30, 2011 13:56
My companion and I really enjoyed studying this weblog put up, I was just itching to know do you commerce featured posts? I'm all the time looking for somebody to make trades with and merely thought I'd ask.
-
winstrolを購入する said October 18, 2011 01:03
良い一日!この記事は、任意のより良い書き込むことができませんでした!この記事を読むことは私の古き良き時代のルームメイトを思い出させる!彼は常にこのことについておしゃべりを続けた。私は彼にこれを書いてアップに転送されます。かなり特定の彼は良いリードを持つことになります。共有のための多くの感謝!
-
MillAerolve said October 24, 2011 01:49
Hello,
I want to let you all in on a brand new search engine I have found. It's still quite new but I have been using it for a week now and love it. I find the search terms it brings back are much better.
I suggest you search your website/favorite sites and see if you prefer it to Google or other big names search engines.
http://www.alphacrawl.com -
SLT-A65 said November 18, 2011 07:09
hello there and thank you for your info – I’ve certainly picked up anything new from right here I did however expertise a few technical issues using this web site, since I experienced to reload the web site lots of times previous to I could get it to load properly I had been wondering if your hosting is OK? Not that I’m complaining, but sluggish loading instances times will often affect your placement in google and can damage your quality score if advertising and marketing with Adwords Anyway I’m adding this RSS to my email and could look out for much more of your respective exciting content Ensure that you update this again soon
-
buy winstrol said November 18, 2011 19:55
This is actually intriguing, You’re an exceptionally effective blogger. I’ve enrolled with your feed and furthermore , look ahead to reading your marvelous write-ups. What’s more, We have shared your internet site inside our social networks.
-
crystal lighting wholesale said November 22, 2011 19:29
Many thanks for sharing this great post. Very interesting ideas! (as always, btw)
-
proviron said December 01, 2011 20:50
This article on blog.eee-craft.com is bookmark worthy in my opinion. It's worth saving for future reference. It's fascinating reading with many valid points for contemplation. I have to concur on almost every point made within this article.
-
appliance repair said December 11, 2011 02:29
Good write-up, I'm normal visitor of blog.eee-craft.com , maintain up the nice operate, and It is going to be a regular visitor for a long time.
-
buy testosterone said December 13, 2011 19:22
But i want to tell that this blog.eee-craft.com is extremely helpful, Thanks for taking your time to write this.
-
half bathroom said January 14, 2012 19:29
Are people still using shockwave?
-
glass insulators for sale said May 04, 2012 07:33
Your blog post on blog.eee-craft.com offers the same submit as another article author but i much like your far better.
-
individual tours in Russia said May 07, 2012 13:20
That was some interesting stuff here on blog.eee-craft.com Thanks for posting it.
-
Renovation said June 05, 2012 16:19
Flash is still very much in use although has been deprecated by Adobe
-
nome de cachorro said June 10, 2012 19:33
After looking at a handful of the blog articles on
your site, I really like your technique of blogging.
I added it to my bookmark site list and will be checking back in the near future.
Take a look at my website as well and tell me your opinion. -
suplementos para ganhar massa said June 13, 2012 07:11
I am truly grateful to the holder of this website who has shared this fantastic post at at this time.
-
escorts Dubai said July 05, 2012 14:51
Hello there, just discovered blog.eee-craft.com on Yahoo, and found that it's really awesome. I'm gonna watch out for brussels. I will appreciate if you keep writing about this subject in future. Lots of people will benefit from your writing. Cheers!
-
promotion site said September 03, 2012 05:56
You will have to consider aspect inside an important challenge for one from all of the most beneficial blog sites for all of the net. I actually can suggest blog.eee-craft.com !
-
escorts Oslo said September 08, 2012 12:43
blog.eee-craft.com is the perfect blog for anyone who wants to know about this topic. You know so much its almost hard to argue with you (not that I really would want…HaHa). You definitely put a new spin on a subject thats been written about for years. Great stuff, just great!
-
keyword research seo tool said September 13, 2012 21:26
Your style is unique in comparison to other folks I have
read stuff from. Thanks for posting when you have the opportunity, Guess I will just book mark this web site. -
xtreme no pre�o said September 15, 2012 16:41
A person necessarily lend a hand to make severely
articles I would state. That is the first time I frequented your website page and thus far?
I surprised with the analysis you made to make this actual put up extraordinary.
Fantastic task! -
Emagrecer Com O Cenaslim said September 18, 2012 16:09
Hello my loved one! I wish to say that this post is awesome,
nice written and come with almost all vital infos. I'd like to look more posts like this . -
ozhbjnh said September 19, 2012 08:21
lmvnyiwi
-
captcha sniper discount said September 27, 2012 11:44
Hi I am so delighted I found your web site, I really found you by accident, while I was browsing on Digg for something else, Regardless I am here now and would
just like to say cheers for a incredible post and a all round thrilling blog (I also love the theme/design), I don't have time to go through it all at the minute but I have saved it and also added your RSS feeds, so when I have time I will be back to read more, Please do keep up the fantastic job. -
Como ganhar massa muscular rapido said September 28, 2012 11:23
Excellent post. I was checking continuously this
blog and I'm impressed! Very helpful info specially the remaining part :) I care for such information a lot. I was seeking this certain info for a very lengthy time. Thank you and good luck. -
Comprar Cenaslim said October 06, 2012 00:09
Hello, I enjoy reading all of your article post.
I wanted to write a little comment to support you. -
escorts uae said October 15, 2012 06:11
You could certainly see your enthusiasm in the work you write ON blog.eee-craft.com . The world hopes for even more passionate writers like you who aren't afraid to say how they believe. Always follow your heart. Best regards
-
crescimento muscular said October 15, 2012 06:30
I am regular visitor, how are you everybody? This article posted at this web page is genuinely good.
-
escort emirates said October 27, 2012 07:44
You will have to consider aspect inside an important challenge for one from all of the most beneficial blog sites for all of the net. I actually can suggest blog.eee-craft.com !
-
escort uae said December 05, 2012 07:56
Thanks for your tips. One thing we've noticed is that often banks in addition to financial institutions know the spending routines of consumers and as well understand that the majority of people max out their cards around the holiday seasons. They correctly take advantage of that fact and start flooding ones inbox in addition to snail-mail box with hundreds of no-interest APR credit cards offers shortly after the holiday season finishes. Knowing that if you are like 98% in the American general public, you'll hop at the opportunity to consolidate card debt and move balances for 0 interest rates credit cards. regards
-
escort uae said December 08, 2012 07:21
Hi there! I could have sworn I've been to this site before but after browsing through some of the post I realized it's new to me. Anyhow, I'm definitely glad I found it and I'll be book-marking and checking back often! best wishes
-
Paris call girl said December 14, 2012 17:05
Ceci est tr���s true.I perdu mon poids change juste fait dans les aliments, en prenant tous les v���g���tariens et des low carb blog.eee-craft.com m'a beaucoup aid��� et je sugg���re ��� tous
-
indian escorts dubai said December 26, 2012 15:34
I need complete and detailed requirements, policies and procedures, anyone help me please? = ).
-
Sony Cyber-shot DSC-W610 said December 29, 2012 07:59
What are the best free blogs that allow user-sponsored advertising and sales?
-
Accompagnatrici Milano said January 01, 2013 03:53
The first piece is geotagging each blog post on some sort of map.. . The second piece is meshing those points on a map with other people. Essentially we'd like several members of our team to provide updates regularly and post their locations to the same map..
-
Deca durabolin 50 mg said January 11, 2013 08:45
I'm impressed of blog.eee-craft.com , I need to say. Really not often do I encounter a blog that's each educative and entertaining, and let me inform you, you have got hit the nail on the head. Your concept is outstanding; the difficulty is one thing that not sufficient people are speaking intelligently about. I'm very blissful that I stumbled throughout this in my seek for something regarding this.
-
buy sustanon said January 12, 2013 22:16
I am new to blogging. How do I add a subscribe function to my site so new post will go to their email? wish you luck
-
prohormone said January 18, 2013 08:29
Since the MSM is totally skewed, what blogs/websites have you found that give you information that the MSM ignores?.
-
buy nandrolone said January 26, 2013 10:28
Wordpress is up and running on my host -- but it completely mismatches my site's existing theme/CSS. How hard would it be to modify/write a new theme to make it fit in? Is there an easier way to do this?.
-
seo service said January 31, 2013 00:25
So I kinda wanna get into blogging. I was wondering where can I make a blog where people might actually read it?.
-
escorts in uae said February 04, 2013 02:48
Hey all, !!
-
dubai lebanese escorts said February 22, 2013 06:09
Excellent read, I just passed this onto a colleague who was doing some research on that. And he just bought me lunch since I found it for him smile Thus let me rephrase that: Thanks for lunch!
-
Anabol 10 said February 22, 2013 17:51
Nothing against the article, but I disagree with a couple of points to some extenct. I'm probably a minority though, lol. Thanks for sharing it on blog.eee-craft.com .
-
buy sustanon said March 19, 2013 17:37
Simply want to say your article is astonishing. The clearness in your post is simply spectacular and i can assume you are an expert on this subject. Well with your permission allow me to grab your rss feed to keep up to date with forthcoming post. Thanks a million and please keep up the gratifying work
-
escrt girl said March 20, 2013 06:05
I just could not depart your site before suggesting that I really enjoyed the standard info a person provide for your visitors? Is gonna be back often to check up on new posts
-
ct escorts said March 26, 2013 06:31
Thanks for this share.
-
escorte Paris said March 29, 2013 06:17
Being more specific, Kick Ass was a movie I found extremely offensive ? mostly because of the Hit Girl character.
-
anabolic extreme said October 18, 2013 16:22
well worth the read. I found blog.eee-craft.com very informative as I have been researching a lot lately on practical matters such as you talk about…