ちょっと強引ですが、HSPEXTを使ってみたスクリプト。
あまり賢くない方法です。Win32APIが分からないぜ〜という方にはちょうどいいかも。
この方法はTESTというウィンドウが2つあったら確実にバグりますのでご注意を。
F5でメモ帳みたいに好きなカーソル位置に挿入可能です。
#include "hspext.as"
title "TEST" //←同じ文字の方がいい
t=""
mesbox t,640,480,1,256*256
//button "時刻挿入",*times
onkey goto *times //キー割り込み
stop
*times
if wparam=116{ //F5のキーコードです。
aplsel "TEST",0 //←同じ文字の方がいい
aplobj "EDIT",0
youbi="日","月","火","水","木","金","土"
time =""+gettime(0)+"年"
time+=""+gettime(1)+"月"
time+=""+gettime(3)+"日"
time+=""+youbi(gettime(2))+"曜日"
time+=""+gettime(4)+"時"
time+=""+gettime(5)+"分"
aplstr ""+time
wait 20
}