Processing, selectInput()
用法介紹。
用法
selectInput(prompt, callback)
selectInput(prompt, callback, file)
selectInput(prompt, callback, file, callbackObject)
參數
prompt
(String)
給用戶的消息callback
(String)
進行選擇時要調用的方法的名稱
返回
void
說明
打開特定於平台的文件選擇器對話框以選擇要輸入的文件。選擇完成後,選擇的文件將被傳遞給'callback' 函數。如果對話框關閉或取消,null
將被發送到函數,這樣程序就不會等待額外的輸入。由於線程的工作方式,回調是必要的。
例子
void setup() {
selectInput("Select a file to process:", "fileSelected");
}
void fileSelected(File selection) {
if (selection == null) {
println("Window was closed or the user hit cancel.");
} else {
println("User selected " + selection.getAbsolutePath());
}
}
相關用法
- Processing selectOutput()用法及代碼示例
- Processing selectFolder()用法及代碼示例
- Processing serverEvent()用法及代碼示例
- Processing settings()用法及代碼示例
- Processing setLocation()用法及代碼示例
- Processing setResizable()用法及代碼示例
- Processing setup()用法及代碼示例
- Processing setTitle()用法及代碼示例
- Processing second()用法及代碼示例
- Processing set()用法及代碼示例
- Processing scale()用法及代碼示例
- Processing splice()用法及代碼示例
- Processing super用法及代碼示例
- Processing subset()用法及代碼示例
- Processing saveJSONArray()用法及代碼示例
- Processing strokeJoin()用法及代碼示例
- Processing saveXML()用法及代碼示例
- Processing switch用法及代碼示例
- Processing sqrt()用法及代碼示例
- Processing save()用法及代碼示例
- Processing saveStrings()用法及代碼示例
- Processing saveTable()用法及代碼示例
- Processing shorten()用法及代碼示例
- Processing saturation()用法及代碼示例
- Processing spotLight()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 selectInput()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。