如何从滚动字段获取内容并将其放入Live代码中的数组中

时间:2015-03-27 04:53:39

标签: livecode livecoding

如何从滚动字段获取内容并将内容放在实时代码中的数组中。我有代码替换数组中的内容

on mouseUp
   put "" into field f1
   put "red,RED" & CR & "green,GREEN" & CR & "blue,BLUE" into myArrayToBe 
   split myArrayToBe by CR
   put the number of lines of (the keys of myArrayToBe) into myArraylength
  repeat with i = 1 to myArraylength 
   put  myArrayToBe[i] into y
   split y by comma
   put y[1] into searchStr
   put y[2] into replaceStr
   put replaceStr &CR after field f1
  end repeat
end mouseUp 

1 个答案:

答案 0 :(得分:0)

此功能应该可以解决问题

function lines_to_array pLines
   put pLines into tArray
   split tArray by return
   RETURN tArray
end lines_to_array

实施例

on mouseUp
   put lines_to_array(field "Guests") into tGuests

   -- do something with the array tGuests here
end mouseUp