1
A
回答
2
on mouseUp
if the field "CC" is not empty then//here "CC" is an Scrolling field and it's containing the content
put 0 into aa
put fld "CC" into myData
split myData by CR
put the number of lines of (the keys of myData) into myArraylength
repeat with i = 1 to myArraylength
put 0 into zo
put myData[i] into y
split y by space
put y[1] into searchStr
if y[1]is not a number then
put 0 into var1
else
put searchStr into vari
put vari &comma after ss1
end if
end repeat
answer ss1
put sum(ss1) into aa1
answer aa1
put ss1 into second1
split second1 by comma
else
answer "List is Empty"
end if
end mouseUp
0
假設在你的滾動字段中的文本格式一致,如您的示例:
5 USA
5 UK
4 EUR
etc.
你可以做這樣的事情:
put fld "myScrollingFld" into tList
put 0 into tTotal
repeat for each line tLineContents in tList
put word 1 of tList into tNum
if tNum is a number then add tNum to tTotal
end if
0
on mouseUp
repeat for each word thisWord in fld "Myfield"
if thisWord is a number then add thisWord to tSum
end repeat
answer tSum
end mouseUp
相關問題
- 1. ScriptDb:如何計算字段的總數
- 2. MySQL計數/總計字段
- 3. 彙總字段的計數
- 4. 如何用Python計算Spark中字典字段的總和?
- 5. 如何使用LiveCode字段計算selectedText的位置?
- 6. 計數字段的總和以獲得總計
- 7. 數獨統計子字段
- 8. 如何計算openerp中的函數字段和db字段
- 9. 如何使用cqlengine查找計數器字段的總和?
- 10. 如何計算字符串中所有數字的總和
- 11. 如何計算在javascript中的數量輸入字段的價格總和
- 12. 計算總計字段
- 13. 如何計算jqgrid中的總和字段?
- 14. 如何計算水晶報表中平均字段的總和
- 15. 如何計算Crystal Reports中公式字段的總和?
- 16. 如何計算Crystal Report中分隔組字段的總和
- 17. 統計在數據庫中出現多次的列字段總數
- 18. 如何計算商店中的一個字段的總數
- 19. 計算輸入字段的總和
- 20. Kibana中的統計面板不會顯示字段的總值
- 21. 如何總結計算字段
- 22. 彙總字段的小計
- 23. 如何統計NSLayoutManager中的字形數
- 24. 如何統計變量中的數字
- 25. 如何獲得solr中字段唯一值的總計數
- 26. 如何在matlab中輕鬆計算一些數字的總和
- 27. 如何在LiveCode DataGrid中創建擴展字段編輯器?
- 28. 如何統計Mysql中特定列的字段數?
- 29. 如何統計數據庫中的公共字段?
- 30. 在TClientDataset中彙總計算字段
您將得到一個關於這類問題的答案,閱讀文檔或關於LiveCode的一本書(.e.g我的書爲真正的初學者編寫LiveCode)。 LiveCode免費的用戶手冊包含PDF。 – Mark