どうすればいいですか?
#include "hsp3utf.as" #module #defcfunc urlencode str p1 text=p1 sdim texten,256 sdim text_en,256 repeat strlen(text) text_en=peek(text,cnt) texten+=strf("%%%x",text_en) loop return texten #global tweettext="HSPでツイッターにテキストを入れる。\nホット スープ プロセッサー\n" hashtag1="HotSoupProcessor" hashtag2="プログラミング" URL="https://hsp.tv" exec "https://twitter.com/share?url="+URL+"&text="+urlencode(tweettext)+"&hashtags="+urlencode(hashtag1)+","+urlencode(hashtag2),16 end