リファレンス 39 ドキュメント 7 サンプル 38
arduino 5 Artlet2D 11 basic 55 comobj 19 d3module 28 demo 1 elm2d 9 game 23 hgimg3 43 hgimg4 24 HIDaspx 2 hsp3dish 21 hsp3imp 1 hsp3utf 4 hspcl 10 hspcv 5 hspda 7 hspdb 3 hspdsc 8 hspdsp 26 hspext 17 hspinet 15 hspprint 2 hspsmart 14 hspsock 5 hsptv 4 hsptvapp 1 hspusbio 1 hspycp 4 misc 15 module 9 new34 10 new35 16 obaq 15 pronama2d 2 pronama3d 3 SQLele 3 ssaver 1

hsp3utf

Path : sample\hsp3utf
utftest1.hsp
#include "hsp3utf.as" fname = "utf-8.txt" mes "テキストファイル["+fname+"]の内容を表示します。
sample\hsp3utf\utftest1.hsp - 2018/05/04
utftest2.hsp
#include "hsp3utf.as" fname = "utf-8.txt" sname = "sjis.txt" mes "テキストファイル["+fname+"]の内容を読み込みます。
sample\hsp3utf\utftest2.hsp - 2018/05/04
utftest3.hsp
#include "hsp3utf.as" objsize 100,25 pos 0,0:button "END",*bye pos 110,0:button "SAVE",*save sdim utftext, $10000 utftext="UTF-8形式で保存されるテキストエディタです。
sample\hsp3utf\utftest3.hsp - 2018/05/04
utftest4.hsp
#include "hsp3utf.as" ANSI(SJIS)で書かれているスクリプトを UTF-8のランタイムで読み込んでいます objsize 100,25 pos 0,0:button "END",*bye notesel ansitext noteload "utftest4.hsp" sdim utftext, $10000 utftext = cnvatos(ansitext) pos 0,30 mesbox utftext,640,450 stop *bye end
sample\hsp3utf\utftest4.hsp - 2018/05/04