IE 関連情報 †
DHTML †
- ダイナミック HTML
- アプリケーションのクライアント側スクリプトのデバッグ
DirectAnimation †
- Microsoft DirectAnimation
- DirectAnimation - VBScript Samples
- DAViewerControl Class
- DADrawingSurface Class
- マルチメディア アニメーションのプログラミングは難しい?
- DHTMLチュートリアル
- Adding Theatrical Effects to Everyday Web Pages with 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>
サンプル集 †
- MAKOTO3.NET
- DAnimation Samples for IE5 BASIC
- WebCompornentAtelier"Sharland"(Java,JSP,Servlet,XML,JavaScript)
- DirectAnimation Club
- DirectAnimation Examples
Microsoft DirectAnimation Control の実体 †
- パス
- C:\WINNT\System32\danim.dll
- CLSID
- B6FFC24C-7E13-11D0-9B47-00C04FC2F51D
- ProgID
Visual InterDev と FrontPage 97の関係 †
- Visual InterDev と FrontPage 97の関係は?
Another HTML-lint を試す(2004.01.25) †
関連情報 †
Cookie †
- [Vector] IE用Cookieエディタ
- [@IT] IE 6のプライバシ管理機能
- [hatena] Windows XP で保存されているCookieファイルの読み方を教えてください。
Google 関連情報 †
Google APIs †
- [@IT] GoogleをWebサービスから利用するAPIの登場
- [@IT] Googleをプログラムから呼び出す
- [@IT] XML Webサービスのキラー・アプリが登場?!
- [MS] Visual Basic .NET を使用した Google Web サービスへのアクセス
- Google Web APIsで遊ぼう
- [impress] 米GoogleがWebサービスに〜「Google Web API」を公開
- [関心空間] Google Web APIs
- [Slashdot] Google Hacks
- [Slashdot] Google Web API何に使う?
Amazon 関連情報 †
Amazon Web Service †
- [@IT] 安藤幸央のランダウン 第18回
- [@IT] 安藤幸央のランダウン 第22回
- [impress] 「Amazon Webサービス」で増加するAmazonの“支店”
- Amazon Webサービス
- Amazon アソシエイトでアフィリエイト:G-Tools
- BLOGKID: Amazon APIs アーカイブ
- Amagle: Amazon.co.jp Search Engine
WebDAV 関連情報 †
FAQ/リンク集 †
- DAV Frequently Asked Questions
- WebDAV Resources JP
- WebDAV Projects
- WebDAV 漢の日記
WebDAV 関連ソフト †
- Webdav Software (Soft411.com)
- DAV Explorer User Manual
- Morgul 2.2
- WebDrive
- Java WebDAV -- Slide Client
- Eclipse - FTP&WebDAVサポート
WebDAV 関連情報 †
- WebDAV の概要
- Webフォルダーを利用しよう!
- Internet File Sync
- WebDAV について
WebDAV 関連情報(開発) †
- Implementations of the WebDAV Distributed Authoring Protocol
- neon HTTP and WebDAV client library
- ADO Object Support in the OLE DB Provider for Internet Publishing
- Searching with ADO
- About the OLE DB Provider for Internet Publishing Guide
- Programmers Reference for the OLE DB Provider for Internet Publishing
- [HOWTO] WebDAV を使用してパブリック フォルダを一覧表示する
- IT 管理者のための MS Web Store
- SharePoint Portal Server 2001による企業内異種データリポジトリの利用
- ファイル サービスの技術概要
- WebDAV 実験ページ
- WebDAV ∼プロトコルと機能と 実装と … 問題点?
- 知った気になれる(?)WebDAV基礎知識?
右クリック拡張 †
- 右クリックメニュー翻訳の搭載
- IE の右クリックメニューに項目を追加
サンプル †
- 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 関連情報 †
関連リンク †
- [MS] Internet Information Server 製品サポート
- [MS] HTTP エラー メッセージの説明
- [MS] Web サイト を開くと、"HTTP 500.100 - 内部 サーバーエラー - ASP エラー "
- [MS] [HOWTO] "HTTP 500 - 内部サーバー エラー" エラー メッセージのトラブルシューティング方法
- [MS] ブラウザに ”ページが見つかりません。” というエラー メッセージが表示された場合の対処方法
- [MS] [HOW TO] IIS でサイトの利用状況ログ収集を有効にする
- [MS] サイトの利用状況のログ収集について
- [MS] IIS Insider: Internet Information Services に関してよく寄せられる質問と答え
- [MS] Windows XP にIIS をインストールするための詳細
- [MS] Windows 2000 で使用可能な IIS のバージョンはどれですか?
- [MS] Internet Explorer 6 のヒント集
- [MS] Internet Explorer のヒント集
- Internet Explorerで出るエラー
ファイアウォール関連情報 †
- [MS] Windows XP のインターネット接続ファイアウォールについて
- [MS] [HOWTO] Windows XP でインターネット接続ファイアウォールを有効または無効にする方法
- [MS] インターネット接続ファイアウォール機能をオンにするとインターネットの参照やファイルの共有ができなくなる
- [@IT] 5分で絶対に分かるファイアウォール
- [MS] ファイアウォールについて知る
- [AllAbout] ファイアウォール - [インターネットセキュリティ]
- [AllAbout] WinXPのファイアウォール設定 - [インターネットセキュリティ]
- Norton Personal Firewall
- 「ファイルやプリンタの共有ができない」場合の対処法
- セキュリティ総合ソリューションサイト
変換ツール †
文字実体参照 †