コメント

このコメントは、while文1へのコメントです。

コメントの内容

Cdv30200 aoi icon mini aoihikawa(投稿日:2012/02/06 17:02/06/12)
例えば、先日の表示処理で
#変更前
setVariable("タイマー",createText(200, 1, 200, 200)) 
setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
waitTime(1000) 
setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
waitTime(1000) 
setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
・ 
・ 
・

#変更後
setVariable("タイマー",createText(200, 1, 200, 200))

i = 0
while i < 10
  #この中をiが10未満の間繰り返す 
  setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
  waitTime(1000)
  i = i + 1 #iをカウント
end

というようにスマートに纏めることができます。

コメントの内容(一番最初の投稿)

Cdv30200 aoi icon mini aoihikawa(投稿日:2012/02/06 17:02/06/12)
例えば、先日の表示処理で
#変更前
setVariable("タイマー",createText(200, 1, 200, 200)) 
setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
waitTime(1000) 
setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
waitTime(1000) 
setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
・ 
・ 
・

#変更後
setVariable("タイマー",createText(200, 1, 200, 200))

i = 0
while i < 10
  #この中をiが10未満の間繰り返す 
  setText( getVariable("タイマー"), "あと"+(30-floor((getTime()/10)/100))+"秒") 
  waitTime(1000)
  i = i + 1 #iをカウント
end

というようにスマートに纏めることができます。