Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

SWF is not working when it works on other major browsers.

  • 1 trả lời
  • 4 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

I frequently see this problem but i cant found any solution including safe modes and profile changes..

Like any other, the swf is not showing but when i play it on "localhost" it works but when i uploaded it on the internet, it doesnt work or show anymore.. is there a way to make your swf firefox friendly? i heard that adobe flash made a filter or what that blocks swf like that..

heres the code of my the embed if theres a use..

<div class="bannercontainer">
    <object width="940" height="445">
  <PARAM NAME=wmode VALUE="transparent">
 <param name="movie" value="images/banner.swf">
 <embed src="images/banner1.swf" width="940" height="445" WMODE="transparent">
       </embed></param> </param>
 </object>
</div>

i also tried the mms.cfg thingy which u have to change a line.. and re place it on the original one on the adobe player folder

I frequently see this problem but i cant found any solution including safe modes and profile changes.. Like any other, the swf is not showing but when i play it on "localhost" it works but when i uploaded it on the internet, it doesnt work or show anymore.. is there a way to make your swf firefox friendly? i heard that adobe flash made a filter or what that blocks swf like that.. heres the code of my the embed if theres a use.. <pre><nowiki><div class="bannercontainer"> <object width="940" height="445"> <PARAM NAME=wmode VALUE="transparent"> <param name="movie" value="images/banner.swf"> <embed src="images/banner1.swf" width="940" height="445" WMODE="transparent"> </embed></param> </param> </object> </div></nowiki></pre> i also tried the mms.cfg thingy which u have to change a line.. and re place it on the original one on the adobe player folder

Được chỉnh sửa bởi cor-el vào

Tất cả các câu trả lời (1)

more options

Note that you have different file names for the object (images/banner.swf) and the embed (images/banner1.swf) You also placed the embed in the middle of a param tag and nested all param tags.

Because you didn't include a MIME type and the object doesn't have a classid for an ActiveX control for IE, I'm not sure what Firefox will be using.
The object doesn't have a data attribute to specify the file.
A separate embed is only needed when you specify a classid in the object.

<div class="bannercontainer">
  <object width="940" height="445" type="application/x-shockwave-flash" data="images/banner.swf" >
    <param name="wmode" value="transparent" />
    <param name="movie" value="images/banner.swf" />
  </object>
</div>

Được chỉnh sửa bởi cor-el vào