Showing posts with label IE. Show all posts
Showing posts with label IE. Show all posts

26 April 2018

A video can be watched in Chrome but not in IE, or in IE but not in Chrome

A video can be watched in Chrome but not in IE, or in IE but not in Chrome


1   <video width="480" height="300" controls autoplay>
2    <source src="https://app.cicscanada.com/video/english/homepage/cics_50th_anniversary_gala.mp4" type="video/mp4" />
3   <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="300">
4    <!--[if !IE]>-->
5    <object type="application/x-shockwave-flash" data="http://app.cicscanada.com/video/player/player.swf" width="480" height="300">
6    <!--<![endif]-->
7    <param name="movie" value="http://app.cicscanada.com/video/player/player.swf" />
8    <param name="wmode" value="transparent" />
9    <param name="bgcolor" value="#FFFFFF" />
10   <param name="quality" value="high" />
11   <param name="allowFullScreen" value="true" />
12   <param name="allowscriptaccess" value="always" />
13   <a href="http://www.adobe.com/go/getflash">
14   <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
15   </a>
16   <param name="flashvars" value="vdo=/video/english/homepage/cics_50th_anniversary_gala.flv&amp;autoplay=true" />
17   <!--[if !IE]>-->
18   </object>
19   <!--<![endif]-->
20   </object>
21  </video>

IE plays flv, while Chrome plays mp4.

Line #16 is for IE. You should not put 'https://app.cicscanada.com' before the file path '/video/english/homepage/...', otherwise, IE would not play the video.

Line #2 is for Chrome. You have to put 'https://app.cicscanada.com' before the file path '/video/english/homepage/...', otherwise, Chrome would not play the video.

(THE END)

12 September 2017

Can not open Internet Explorer

Can not open Internet Explorer

Solution:

Steps:
1. Click 'Start'. Type 'cmd'. Righ-click 'cmd'. Choose 'Run as Administrator'.
2. type in the following command -
>regsvr32.exe "c:\program files\internet explorer\ieproxy.dll".
You will get a successfully registered message.
3. Restart your computer.

25 March 2015

ADP - IE closes when printing

Solution:

1. IE Tools | Compatibility View Settings, add ADP site.
2. IE Tools | Internet Options | Browsing History | Settings, change 'Disk space to use' into 256.
3. IE Tools | Internet Options | Security, change it to lowest.
4. IE Tools | Internet Options | Advanced, set to default.

Do not change printer set up within ADP. Always change it in Start | Printers | Printer Preferences.

24 November 2014

Can not download files in IE

Can not download a file in IE, but can download the same file in Chrome, etc.

Solution: change the extension name into .dat

24 April 2013

HTML code to play flash swf in IE, Chrome, and Firefox

<object width="400" height="40"
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/
pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
< param name="SRC" value="bookmark.swf">
< embed src="bookmark.swf" width="400" height="40">
< /embed>
< /object>

HTML code to play WMV video in IE, Chrome and Firefox

Note: Chrome and Firefox would NOT play .wmv

<object width="100%" height="100%"
type="video/x-ms-asf" url="3d.wmv" data="3d.wmv"
classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
<param name="url" value="3d.wmv">
<param name="filename" value="3d.wmv">
<param name="autostart" value="1">
<param name="uiMode" value="full">
<param name="autosize" value="1">
<param name="playcount" value="1">
<embed type="application/x-mplayer2" src="3d.wmv" width="100%" height="100%" autostart="true" showcontrols="true" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"></embed>
</object>