執行單選按鈕時出現問題。我知道CS2中的單選按鈕可能存在問題,但我不確定我出錯的位置。我懷疑我在錯誤的地方有一個括號或逗號;但看不到它。謝謝。javascript UI中的UI UI單選按鈕
var dlg =
"dialog {text:'Script Interface',bounds:[100,100,300,260]," +
"info: Group { orientation: 'column', alignChildren: 'center'," +
"radiobutton0:RadioButton {bounds:[50,30,150,40] , text:'layerName0', alignment: 'left' }," +
"radiobutton1:RadioButton {bounds:[50,50,150,90] , text:'layerName1', alignment: 'left' }}" +
"cancelBTN:Button{bounds:[110,130,190,150] , text:'Cancel' },"+
"processBTN:Button{bounds:[10,130,90,150] , text:'Ok' }}";
var win = new Window(dlg,"radio buttons");
win.radiobutton0.value = true;
win.center();
win.show();
另一件事:有沒有寫UI元素,這種格式相當醜陋的更好的方法。
這是裸露的骨骼代碼的作品。 var dialogBox = 「dialog {orientation:'column',alignChildren:'center',\ info:Group {orientation:'column',alignChildren:'center',\ rbtn1:RadioButton {text:'Radio Button 1 ',align:'left'},\ rbtn2:RadioButton {text:'Radio Button 2',align:'left'},},},\ }};
win = new Window (dialogBox);
win.center();
win.show();
我想的單選按鈕肘節是由3行註釋出來停止單選按鈕正常工作控制。
您提供的腳本不會切換單選按鈕;這正是我所希望的。 –
我在問題中沒有看到。切換的意思是什麼?單選按鈕的默認行爲(選擇一個切換所有其他按鈕)應自動應用於同一分組內的所有按鈕。你有沒有別的想法? – pdizz
對不起,我認爲這很明顯。我爲最初的問題添加了另一個代碼示例。 –