動画でわかるJw-cad最強バイブルサポートサイトフォーラム

質問:【至急】Chapter02-01 以降、閲覧できません

from:   2017年05月03日 16時23分 質問中 コメントする
win7 64bit crome35以上 環境ですが、Chapter02-01 以降、閲覧できません。1と3は閲覧できます。

Chapter02 は、

02-01.html
0201.swf
Flash Tag.js

のみで、「0201.swf」を参照する記述がありません。
Flashは起動していますが、動画が未ロード状態です。
Gomプレイヤー以外で模索中ですが、スプリクトの書き換えで対応できるようならお願いいたします。
【関連キーワード】なし
  返信数:5 | 質問中  Me too度:665 評価する:Me too! 役に立った!

カテゴリ:その他

コメントする

from:   (質問者) 2017年05月03日 16時25分
追記:フラッシュVer.  25.0.0.148
役に立ちましたか?: はい
from:   (質問者) 2017年05月03日 17時13分
Flash Tag.js の記述です
---------------------------------

/*
Macromedia(r) Flash(r) JavaScript Integration Kit License


Copyright (c) 2005 Macromedia, inc. All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.

3. The end-user documentation included with the redistribution, if any, must
include the following acknowledgment:

"This product includes software developed by Macromedia, Inc.
(http://www.macromedia.com)."

Alternately, this acknowledgment may appear in the software itself, if and
wherever such third-party acknowledgments normally appear.

4. The name Macromedia must not be used to endorse or promote products derived
from this software without prior written permission. For written permission,
please contact devrelations@macromedia.com.

5. Products derived from this software may not be called "Macromedia" or
"Macromedia Flash", nor may "Macromedia" or "Macromedia Flash" appear in their
name.

THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MACROMEDIA OR
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.

--

This code is part of the Flash / JavaScript Integration Kit:
http://www.macromedia.com/go/flashjavascript/

Created by:

Christian Cantrell
http://weblogs.macromedia.com/cantrell/
mailto:cantrell@macromedia.com

Mike Chambers
http://weblogs.macromedia.com/mesh/
mailto:mesh@macromedia.com

Macromedia
*/

/**
* Generates a browser-specific Flash tag. Create a new instance, set whatever
* properties you need, then call either toString() to get the tag as a string, or
* call write() to write the tag out.
*/

/**
* Creates a new instance of the FlashTag.
* src: The path to the SWF file.
* width: The width of your Flash content.
* height: the height of your Flash content.
*/
function FlashTag(src, width, height)
{
this.src = src;
this.width = width;
this.height = height;
this.version = '8,0,0,0';
this.id = null;
this.bgcolor = 'ffffff';
this.flashVars = null;
this.params = new Array();
}

/**
* Sets the Flash version used in the Flash tag.
*/
FlashTag.prototype.setVersion = function(v)
{
this.version = v;
}

/**
* Sets the ID used in the Flash tag.
*/
FlashTag.prototype.setId = function(id)
{
this.id = id;
}

/**
* Sets the background color used in the Flash tag.
*/
FlashTag.prototype.setBgcolor = function(bgc)
{
this.bgcolor = bgc;
}

/**
* Sets any variables to be passed into the Flash content.
*/
FlashTag.prototype.setFlashvars = function(fv)
{
this.flashVars = fv;
}

/**
* Sets any additional flash parameters
*/
FlashTag.prototype.addParameter = function(name_, value_)
{
this.params.push({name:name_, value:value_});
}

/**
* Get the Flash tag as a string.
*/
FlashTag.prototype.toString = function()
{
var ie = (navigator.appName.indexOf ("Microsoft") != -1) ? 1 : 0;
var flashTag = new String();
if (ie)
{
flashTag += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
if (this.id != null)
{
flashTag += 'id="'+this.id+'" ';
}
flashTag += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+this.version+'" ';
flashTag += 'width="'+this.width+'" ';
flashTag += 'height="'+this.height+'">';
flashTag += '<param name="movie" value="'+this.src+'"/>';
flashTag += '<param name="quality" value="high"/>';
flashTag += '<param name="bgcolor" value="#'+this.bgcolor+'"/>';
if (this.flashVars != null)
{
flashTag += '<param name="flashvars" value="'+this.flashVars+'"/>';
}
if (this.params.length != 0)
{
for (var key in this.params)
{
flashTag += '<param name="' + this.params[key].name + '" value="' + this.params[key].value + '"/>';
}
}
flashTag += '</object>';
}
else
{
flashTag += '<embed src="'+this.src+'" ';
flashTag += 'quality="high" ';
flashTag += 'bgcolor="#'+this.bgcolor+'" ';
flashTag += 'width="'+this.width+'" ';
flashTag += 'height="'+this.height+'" ';
flashTag += 'type="application/x-shockwave-flash" ';
if (this.flashVars != null)
{
flashTag += 'flashvars="'+this.flashVars+'" ';
}
if (this.id != null)
{
flashTag += 'name="'+this.id+'" ';
}
if (this.params.length != 0)
{
for (var key in this.params)
{
flashTag += '' + this.params[key].name + '="' + this.params[key].value + '" ';
}
}
flashTag += 'pluginspage="http://www.macromedia.com/go/getflashplayer">';
flashTag += '</embed>';
}
return flashTag;
}

/**
* Write the Flash tag out. Pass in a reference to the document to write to.
*/
FlashTag.prototype.write = function(doc)
{
doc.write(this.toString());
}

役に立ちましたか?: はい
from:   (質問者) 2017年05月04日 00時10分
クロームは自動更新で、フラッシュ、クロームのVerは最新以外は不可とのことです。

お返事も特にないようですので、動画の閲覧自体をあきらめようかと思います。

win7、win10、Cromeのインストールされている現在のPCでは、この商品は利用できないようですね。
役に立ちましたか?: はい
from:   (質問者) 2017年05月04日 00時42分
追記:ファイアフォクスでフラッシュのVer下げられました。1コンテンツずつ、脆弱性を注意されますが、なんとか閲覧できます。swfデータは、ブラウザ依存ですからね...。MP4だと良かったです。
役に立ちましたか?: はい
from: JWW初心者  2017年05月08日 04時30分
僕も全く同じ状況で大変、困ってます。
役に立ちましたか?: はい

コメントを書く

コメント:
画像のアップロード:
※ アップロードできるファイルは「1つ」までです。