加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 nuitjean 于 2010-8-6 19:52 编辑
在事件裡面使用事件腳本$game_screen.pictures[2].show("0001",0,427,0,100,100,255,0)
執行後會發生SyntaxError錯誤(語法錯誤?)
嘗試修改為以下 :
$game_screen.pictures[1].show("01.png",0,427,0,100,100,255,0)
$game_screen.pictures[1].show("01",0,427,0,100,100,255,0)
$game_screen.pictures[1].show("0001.png",0,427,0,100,100,255,0)
$game_screen.pictures[1].show("Actor0001.png",0,427,0,100,100,255,0)
$game_screen.pictures[1].show("/FaceActor/Actor0001.png",0,427,0,100,100,255,0)
$game_screen.pictures[1].show("/FaceActor/0001.png",0,427,0,100,100,255,0)
結果都會發生SyntaxError。
我想不出來為什麼會出錯...難到這腳本本來就不能用嗎? |