IE 関連情報

DHTML

DirectAnimation

How to Create a VBScript Animation

http://www.microsoft.com/Developer/PRODINFO/directx/dxm/help/da/oview/how2VBscriptani.htm

  • The DirectAnimation library works with the DirectAnimation integrated-media control (DAViewerControl). Library calls are made through a scripting language, such as JScript or VBScript, to construct an animation and play it from an HTML file.
  • To construct a simple DirectAnimation control in VBScript:
  • 1. In your HTML file, declare your DAViewerControl object. The object's name can be anything. Here it is DAMyCtl. The CLSID must be as shown:
<OBJECT ID="DAMyCtl"
   STYLE="position:absolute; left:30%; top:100;width:300;height:300" 
   CLASSID="CLSID:B6FFC24C-7E13-11D0-9B47-00C04FC2F51D">
</OBJECT>
  • 2. Define your script language.
<SCRIPT LANGUAGE="VBScript">
<!--
  • 3. Extract either the PixelLibrary or MeterLibrary from your control.
   Set m = DAMyCtl.PixelLibrary

-- or --

   Set m = DAMyCtl.MeterLibrary
  • 4. Write your code. When you have created the image or sound you want to display (which can be as elaborate as you like), set it to the DAViewerControl's Image property or Sound property. In this case, the DAViewerControl Image property is set to a solid blue plane that covers the screen:
  DAMyCtl.Image = m.SolidColorImage(m.Blue)
  • 5. Render the image or sound with the DAViewerControl function Start:
  DAMyCtl.Start
  • 6. Close the VBScript scripting section:
-->
</SCRIPT>

サンプル集

Microsoft DirectAnimation Control の実体

  • パス
    • C:\WINNT\System32\danim.dll
  • CLSID
    • B6FFC24C-7E13-11D0-9B47-00C04FC2F51D
  • ProgID
    • DAViewerControl

Visual InterDev と FrontPage 97の関係

Another HTML-lint を試す(2004.01.25)

  • チェック結果
    http://www.hondarer-soft.com/cx/pukiwiki/pukiwiki.php を 
    XHTML1.1 としてチェックしました。
    
    33個のエラーがありました。このHTMLは 99点です。タグが 28種類
     628組使われています。文字コードは EUC-JP のようです。

関連情報

Cookie

Google 関連情報

Google APIs

Amazon 関連情報

Amazon Web Service

WebDAV 関連情報

FAQ/リンク集

WebDAV 関連ソフト

WebDAV 関連情報

WebDAV 関連情報(開発)

右クリック拡張

サンプル

  • NewsClip_20040824.reg
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\ニュースクリップ(&P)]
    @="C:\\bin\\NewsClip.htm"
    "contexts"=dword:00000010
  • NewsClip.htm
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    function toClip(s)
    {
      window.clipboardData.setData('text',s)
    }
    function getPrefix(s)
    {
      var urlArray = new Array();
      urlArray['itpro.nikkeibp.co.jp'] = '[ITPro] ';
      urlArray['japan.cnet.com']       = '[CNET] ';
      urlArray['japan.internet.com']   = '[Internet.com] ';
      urlArray['pcweb.mycom.co.jp']    = '[PCWEB] ';
      urlArray['ascii24.com']          = '[ASCII24] ';
      urlArray['impress.co.jp']        = '[impress] ';
      urlArray['slashdot.jp']          = '[Slashdot] ';
      urlArray['hotwired.goo.ne.jp']   = '[WIRED] ';
      urlArray['itmedia.co.jp']        = '[ITmedia] ';
      urlArray['atmarkit.co.jp']       = '[@IT] ';
      urlArray['microsoft.com']        = '[MS] ';
      for ( url in urlArray )
      {
        if ( s.indexOf( url ) != -1 )
        {
           return urlArray[url];
        }
      }
    }
    var objWindow = external.menuArguments;
    var objDocument = objWindow.document;
    var objSelection = objDocument.selection;
    var objSelectText = objSelection.createRange().text;
    var strParentURL = objWindow.parent.document.URL;
    toClip('<A HREF="'+strParentURL+'" TARGET="_blank">'+getPrefix(strParentURL)+objSelectText+'</A>');
    //-->
    </SCRIPT>

IIS 関連情報

関連リンク

ファイアウォール関連情報

変換ツール

文字実体参照


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2010-02-27 (土) 14:20:01 (5173d)