リファレンス 37 ドキュメント 6 サンプル 41
arduino 5 Artlet2D 11 basic 55 comobj 19 d3module 29 demo 1 game 23 hgimg3 43 hgimg4 33 HIDaspx 2 hsp3dish 22 hsp3imp 1 hsp3utf 4 hspcl 10 hspcv 5 hspda 7 hspdb 3 hspdsc 22 hspdsp 26 hspext 17 hspinet 15 hspint64.dll 27 hspprint 2 hspsmart 14 hspsock 5 hspsw 4 hsptv 4 hsptvapp 2 hspusbio 1 misc 15 module 9 mucom88 6 new34 10 new35 16 new36 10 obaq 15 pronama2d 2 pronama3d 5 sprite 10 SQLele 3 ssaver 1

hsp3utf

Path : sample\hsp3utf
utftest1.hsp
#include "hsp3utf.as" fname = "utf-8.txt" mes "テキストファイル["+fname+"]の内容を表示します。
sample\hsp3utf\utftest1.hsp - 2021/07/29
utftest2.hsp
#include "hsp3utf.as" fname = "utf-8.txt" sname = "sjis.txt" mes "テキストファイル["+fname+"]の内容を読み込みます。
sample\hsp3utf\utftest2.hsp - 2021/07/29
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 - 2021/07/29
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 - 2021/07/29