#contents

*PukiWiki 関連情報 [#k2e3d64c]
**#memo プラグインについて [#n93c1fa5]
-以下のように記述すると、メモが入力できるが、メモの中に「,」(カンマ)が含まれると、正しく表示してくれないらしい。
 #memo
-以下のようなメモを入力すると、
 #include <stdio.h>
 
 int main( int argc, char* argv[] )
 {
   return 0;
 }
-次のように「,」(カンマ)以降が表示されなくなる。
 #include <stdio.h>
 
 int main( int argc
-どうやら「,」(カンマ)が含まれているとプラグインが誤動作するらしい。
 #memo(#include <stdio.h>\n\nint main( int argc, char* argv[] )\n{\n	return 0;\n})
#memo(gmuqaornc sakw awdvgfhm wakx fkvra asrjtz bfyo)

**#showrss プラグインについて [#xf484848]
-文字化けするのは何故?
--Hondarer-soft
 #showrss(http://www.hondarer-soft.com/japan/pubwiki.cgi?RssPage,recent)
#showrss(http://www.hondarer-soft.com/japan/pubwiki.cgi?RssPage,recent)
--PukiWiki本家
 #showrss(http://pukiwiki.org/?cmd=rss10,recent)
#showrss(http://pukiwiki.org/?cmd=rss10,recent)
--Slashdot
 #showrss(http://slashdot.jp/slashdot.rdf,recent)
#showrss(http://slashdot.jp/slashdot.rdf,recent)

-PHPがmbstring無しで導入されていると文字化けするっぽい。
--PukiWiki1.4にはmbstringの代替関数(mbstring.php)が用意されているらしい。
-mbstringの代替関数に関する情報
--PukiWiki/mbstring無しのPHPでの動作
---http://pukiwiki.org/?PukiWiki%2Fmbstring%E7%84%A1%E3%81%97%E3%81%AEPHP%E3%81%A7%E3%81%AE%E5%8B%95%E4%BD%9C
--Hondarer-softのサイトだけは文字化け解消したが他のサイトはダメっぽい・・・。
---<?xml version="1.0" encoding="shift_jis" ?> はOKで、
---<?xml version="1.0" encoding="utf-8" ?> がダメみたい。
-やっぱりサーバーにmbstringを入れないとダメ???
--私がレンタルしているサーバーではPHPが使えないんですけど…
---http://pukiwiki.org/?FAQ%2F23

*IE 関連情報 [#y543ecc4]
**DHTML [#j49f7984]
***DirectAnimation [#h6ea9bd2]
-Microsoft DirectAnimation
--http://www.microsoft.com/Developer/PRODINFO/directx/dxm/help/da/c-frame.htm
-DirectAnimation - VBScript Samples
--http://www.microsoft.com/Developer/PRODINFO/directx/dxm/help/da/oview/VBScript_Samps.htm
-DAViewerControl Class
--http://www.microsoft.com/Developer/PRODINFO/directx/dxm/help/da/ref_script/class/DAViewerControlClass.htm
-DADrawingSurface Class
--http://www.microsoft.com/Developer/PRODINFO/directx/dxm/help/da/ref_script/class/DADrawingSurfaceClass.htm
-マルチメディア アニメーションのプログラミングは難しい?
--http://www.microsoft.com/japan/msdn/weeklynews/mm_dx.asp
-DHTMLチュートリアル
--http://www.microsoft.com/japan/msdn/library/ja/jpisdk/dhtml/howto/howto.asp
-Adding Theatrical Effects to Everyday Web Pages with DirectAnimation
--http://www.microsoft.com/mind/1097/directanim.asp

***How to Create a VBScript Animation [#dadee5de]
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>
***サンプル集 [#oc528102]
-MAKOTO3.NET
--http://www.st.rim.or.jp/~makoto3/
-DAnimation Samples for IE5 BASIC
--http://www.makoto3.net/DIRECT_ANIM/direct_anime0000.asp
-WebCompornentAtelier"Sharland"(Java,JSP,Servlet,XML,JavaScript)
--http://sharland.yoko.ne.jp/homemenu.html
-DirectAnimation Club
--http://sharland.yoko.ne.jp/DirectAnim/DirectAnimClub.htm
-DirectAnimation Examples
--http://www.p-richards.demon.co.uk/danim/danim_main.htm
#ref(http://www.egroups.co.jp/files/cx_dev/home/edu/html/dhtml/p-richards/FractalTrees.htm)
***Microsoft DirectAnimation Control の実体 [#bf081f12]
-パス
--C:\WINNT\System32\danim.dll
-CLSID
--B6FFC24C-7E13-11D0-9B47-00C04FC2F51D
-ProgID
--DAViewerControl
**Visual InterDev と FrontPage 97の関係 [#jce290cd]
-Visual InterDev と FrontPage 97の関係は?
--http://www.microsoft.com/japan/msdn/vs_previous/vinterdev/faq/default.htm
---Visual InterDev は主としてプログラマ向けに設計されたWeb開発ツール
---FrontPage 97 はプログラマ以外の人のために設計された Web オーサリング ツール


トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS