[Top Page][All Pages][Recent Changes]

Edit History:View

Content of Sさん at 2015/04/26 18:21:45 JST

View diff from current version

Return to the edit history

  * HSPで作ってみる
  ** hsed3をいじる
  HDLを見ると、''hsedsdk''というのがあるとか。
  
  それをちょっとやってみる。
  *** mesboxと連動的な
  {{{
  /*hsedsdkを使って
  by Sさん
  */
  #include "hsedsdk.as"
  title "hsedをいじる"
  sdim hsed
  button gosub "hsed3にコピー",*copy
  mesbox hsed,ginfo_winx,ginfo_winy-25
  stop
  *copy
  	hsed_exist
  	if stat=1{
  		hsed_getacttabid tabid
  		hsed_getfootyid footyid,tabid
  		hsed_settext footyid,hsed
  }
  return
  }}}
  - この場合、アクティブなタブのテキストを丸ごと変えてしまいます。
  
  **