<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/lockerroom/">
    <title>lockerroom @ ウィキ</title>
    <link>http://w.atwiki.jp/lockerroom/</link>
    <atom:link href="https://w.atwiki.jp/lockerroom/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>lockerroom @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2010-11-11T01:14:02+09:00</dc:date>
    <utime>1289405642</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/lockerroom/pages/6.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/15.html">
    <title>ActiveXSample.ahk</title>
    <link>https://w.atwiki.jp/lockerroom/pages/15.html</link>
    <description>
      /* Sample_IE.ahk */
#Persistent

#include %A_ScriptDir%¥ActiveX.ahk

;初期化
ActiveX()

;オブジェクト作成
ie:=CreateObject(&quot;InternetExplorer.Application&quot;)


;プロパティへの書き込み
pp(ie,&quot;Visible&quot;,&quot;true&quot;)

;メソッド呼び出し
inv(ie,&quot;Navigate&quot;,&quot;about:blank&quot;)

;プロパティオブジェクトの取得
doc:=gp(ie,&quot;Document&quot;)
win:=gp(doc,&quot;parentWindow&quot;)

inv(doc,&quot;write&quot;,&quot;Hello!&lt;br&gt;&lt;br&gt;&quot;)

;イベントの割り当て
ConnectObject(doc,&quot;Document_&quot;)
ConnectObject(win,&quot;Window_&quot;)

;オブジェクト解放
Release(doc)
Release(win)
Release(ie)
return

;イベントに割り当てられる関数
Document_onfocusin(this,prm,res){
	inv(this,&quot;write&quot;,&quot;focuse in&lt;br&gt;&quot;)
}
Document_onfocusout(this,prm,res){
	inv(this,&quot;write&quot;,&quot;focuse out&lt;br&gt;&quot;)
}
Window_onbeforeunload(this,prm,res){
	MsgBox,閉じます
	SetTimer,quit,-100
}
quit:
ExitApp


---------------------------
/* sample_JScript.ahk */

#include %A_ScriptDir%¥ActiveX.ahk
ActiveX()

;JScript のコードを埋め込み
script=
(
	for(var i=5;i&gt;0;i--){
		sapi.Speak(i+&quot;,&quot;);
	}
	sapi.Speak(&quot;0!&quot;);
)

sc:=CreateObject(&quot;MSScriptContr    </description>
    <dc:date>2010-11-11T01:14:02+09:00</dc:date>
    <utime>1289405642</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/14.html">
    <title>ActiveX.ahk</title>
    <link>https://w.atwiki.jp/lockerroom/pages/14.html</link>
    <description>
      /*
COM操作ライブラリ	by 流行らせるページ管理人
 Ver 3β
*/

ActiveX(){
	global
	IID_IDispatch:=GUID(&quot;{00020400-0000-0000-C000-000000000046}&quot;)
	IID_IUnknown:=GUID(&quot;{00000000-0000-0000-C000-000000000046}&quot;)
	IID_NULL:=GUID(&quot;{00000000-0000-0000-0000-000000000000}&quot;)
	IID_IConnectionPointContainer:=GUID(&quot;{B196B284-BAB4-101A-B69C-00AA00341D07}&quot;)
	IID_IProvideClassInfo:=GUID(&quot;{B196B283-BAB4-101A-B69C-00AA00341D07}&quot;)
	;IID_IProvideClassInfo2:=GUID(&quot;{A6BC3AC0-DBAA-11CE-9DE3-00AA004BB851}&quot;)
	LOCALE_USER_DEFAULT:=DllCall(&quot;kernel32.dll¥GetUserDefaultLCID&quot;)
	CoInitialize()
}



/*
	**********************************
	汎用メモリ管理
	**********************************
*/

;メモリを確保しポインタを返す
Malloc(size,flag=0x40){
	return DllCall(&quot;kernel32.dll¥GlobalAlloc&quot;,&quot;UInt&quot;,flag,&quot;UInt&quot;,size,&quot;UInt&quot;)
}
;ポインタで指定されたメモリを解放する
Free(p){
	DllCall(&quot;kernel32.dll¥GlobalFree&quot;,UInt,p,UInt)
}


/*
	**********************************
	GUID関連
	**********************************
*/

;CLSID文字列からGUID構造体を生成しアドレスを得る(仮)
    </description>
    <dc:date>2010-11-11T01:07:00+09:00</dc:date>
    <utime>1289405220</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/13.html">
    <title>AutoHotKey</title>
    <link>https://w.atwiki.jp/lockerroom/pages/13.html</link>
    <description>
      [[ActiveX.ahk]]
--------------
/*
COM操作ライブラリ	by 流行らせるページ管理人
 Ver 3β
*/

ActiveX(){
	global
	IID_IDispatch:=GUID(&quot;{00020400-0000-0000-C000-000000000046}&quot;)
	IID_IUnknown:=GUID(&quot;{00000000-0000-0000-C000-000000000046}&quot;)
	IID_NULL:=GUID(&quot;{00000000-0000-0000-0000-000000000000}&quot;)
	IID_IConnectionPointContainer:=GUID(&quot;{B196B284-BAB4-101A-B69C-00AA00341D07}&quot;)
	IID_IProvideClassInfo:=GUID(&quot;{B196B283-BAB4-101A-B69C-00AA00341D07}&quot;)
	;IID_IProvideClassInfo2:=GUID(&quot;{A6BC3AC0-DBAA-11CE-9DE3-00AA004BB851}&quot;)
	LOCALE_USER_DEFAULT:=DllCall(&quot;kernel32.dll¥GetUserDefaultLCID&quot;)
	CoInitialize()
}



/*
	**********************************
	汎用メモリ管理
	**********************************
*/

;メモリを確保しポインタを返す
Malloc(size,flag=0x40){
	return DllCall(&quot;kernel32.dll¥GlobalAlloc&quot;,&quot;UInt&quot;,flag,&quot;UInt&quot;,size,&quot;UInt&quot;)
}
;ポインタで指定されたメモリを解放する
Free(p){
	DllCall(&quot;kernel32.dll¥GlobalFree&quot;,UInt,p,UInt)
}


/*
	**********************************
	GUID関連
	**********************************
*/

;    </description>
    <dc:date>2010-11-11T01:02:50+09:00</dc:date>
    <utime>1289404970</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/12.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/lockerroom/pages/12.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

たとえば、
 #price_list(game-toy)
と入力すると以下のように表示されます。

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2010-11-11T00:43:55+09:00</dc:date>
    <utime>1289403835</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/lockerroom/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment    </description>
    <dc:date>2010-11-11T00:43:55+09:00</dc:date>
    <utime>1289403835</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/10.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/lockerroom/pages/10.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


たとえば、#bf(ゲーム)と入力すると以下のように表示されます。


#bf(ゲーム)
    </description>
    <dc:date>2010-11-11T00:43:55+09:00</dc:date>
    <utime>1289403835</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/9.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/lockerroom/pages/9.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2010-11-11T00:43:55+09:00</dc:date>
    <utime>1289403835</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/8.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/lockerroom/pages/8.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_209_ja.html

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2010-11-11T00:43:55+09:00</dc:date>
    <utime>1289403835</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/7.html">
    <title>プラグイン/アーカイブ</title>
    <link>https://w.atwiki.jp/lockerroom/pages/7.html</link>
    <description>
      * アーカイブ
@wikiのwikiモードでは
 #archive_log()
と入力することで、特定のウェブページを保存しておくことができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/25_171_ja.html


-----


たとえば、#archive_log()と入力すると以下のように表示されます。
保存したいURLとサイト名を入力して&quot;アーカイブログ&quot;をクリックしてみよう


#archive_log()
    </description>
    <dc:date>2010-11-11T00:43:55+09:00</dc:date>
    <utime>1289403835</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/lockerroom/pages/6.html">
    <title>プラグイン/編集履歴</title>
    <link>https://w.atwiki.jp/lockerroom/pages/6.html</link>
    <description>
      * 更新履歴
@wikiのwikiモードでは
 #recent(数字)
と入力することで、wikiのページ更新履歴を表示することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_117_ja.html


-----


たとえば、#recent(20)と入力すると以下のように表示されます。


#recent(20)
    </description>
    <dc:date>2010-11-11T00:43:55+09:00</dc:date>
    <utime>1289403835</utime>
  </item>
  </rdf:RDF>
