あなたが求めているものの配列は必要ありません。あなたはこのように、変数を使用することができます。
put "orange,apple,tomato,grapes" into theBasket
がtheBasket変数の内容を取得するには、その項目を参照:
answer item 3 of theBasket -- answers "tomato"
:
answer the items of theBasket -- answers the fruit names
がtheBasket変数の一つの項目を取得するには
変数の果実の数を取得するには:
answer the number of items of theBasket -- answers 4
あなたはそれぞれのフルーツの単語の文字で何をしたいのかを説明しませんが、文字(文字)などの単語の文字を参照してください
:
put item 1 of theBasket into theFruit -- puts "orange" into a new variable
answer char 3 of theFruit -- answers "a"
実際LiveCodeアレイの詳細については、いくつかあります素晴らしい情報はここにあります:http://revolution.byu.edu/arrays/introToArrays.php
偉大な、よかったです。 – CoopDaddio
FYIウェブサイト名はhttp://livecode.byu.eduに更新されましたが、古い名前は引き続きエイリアスとして動作します。 – Devin