hinekure.net が http://hspdev-wiki.net/ から自動クローリングした結果を表示しています。画像やリソースなどのリンクが切れています。予めご了承ください。
小ワザ/HSPエディタメニュー項目自動選択 - HSP開発wiki
トップ    編集凍結 差分バックアップ添付複製名前変更リロード   新規一覧単語検索最終更新   最終更新のRSS

HSPエディタメニュー項目自動選択

 HSPでのプログラム開発を補うソフトを開発するための機能です。
HSPエディタの指定された項目を自動クリックします。位置を指定での
メニューアイテム取得をしているため、次期HSPエディタのバージョン
アップにおいて、不都合が生じる場合があります。

Everything is expanded.Everything is shortened.
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#module
#uselib "user32"
#func FindWindowA "FindWindowA" sptr,sptr
#func FindWindowExA "FindWindowExA" sptr,nullptr ,sptr,sptr
 
//findwindowh "ウィンドウクラス","ウィンドウタイトル"
#defcfunc findwindowh str p1,str p2
s1=p1:s2=p2:if s1!""{s3=s1}else{s3=0}
if s2!""{s4=s2}else{s4=0}
FindWindowA s3,s4
return stat
 
//FindWindowExh 親ウィンドウハンドル,"ウィンドウクラス","ウィンドウタイトル"
#defcfunc FindWindowExh int _hnd,str _class, str _tit
s1=_class:s2=_title:if s1!""{s3=s1}else{s3=0}
if s2!""{s4=s2}else{s4=0}
FindWindowExA _hnd, s3, s4
return stat
#global
 
 
//HSPエディタのメニューアイテムをクリックさせる
//SelectedOnipadMenuItem 左から数えたメニュー項目の位置, 上から数えたサブメニューアイテムの位置
#module
#uselib "user32"
#cfunc GetMenu "GetMenu" int
#cfunc GetMenuItemID "GetMenuItemID" int,int
#func GetMenuItemInfo "GetMenuItemInfoA" int,int,int,int
#cfunc GetSubMenu "GetSubMenu" int,int
#deffunc SelectedOnipadMenuItem int menunum, int itemnum
honipad=findwindowh("onipad", "")                    //HSPウィンドウのハンドルを取得
if honipad = 0 : return 0                            //起動していない場合0を返す
hnd=GetMenu(honipad)
hnd=GetSubMenu(hnd,menunum)
dim MENUITEMINFO,12
MENUITEMINFO.0=12*4
MENUITEMINFO.1=$00000002
GetMenuItemInfo hnd, itemnum, 1, varptr(MENUITEMINFO)
SendMsg  honipad, $00000111, (MENUITEMINFO.4 | 0 << 16), 0
return honipad
#global
 
 
 
 
SelectedOnipadMenuItem 0,3
 
end
トップ    編集凍結 差分バックアップ添付複製名前変更リロード   新規一覧単語検索最終更新   最終更新のRSS
Last-modified: 2008-03-21 (金) 15:26:28 (2088d)