有沒有一種(更好的)方式來確定選擇是否存在於Photoshop中的圖層中,而無需在selection.bounds上使用try/catch? try
{
var sel = app.activeDocument.selection.bounds;
}
catch(e)
{
var sel = undefined;
alert("No selection");
基於this answer我試圖在遺傳算法中做我的輪盤選擇。 private static final int NUMBER_OF_TOURISTS = 20;
private static int[] roulette(int population[]) {
int sumProb = 0;
for (int i = 0; i < population.length; i
如果我使用window.getSelection()從textarea(帶有一類my-text-area)的選擇對象,如果此選擇失去焦點(例如,如果用戶單擊另一個輸入字段),有沒有辦法我可以再次以編程方式設置此選擇? 我試着做這樣的事情: 當我有焦點: var currentSelection = window.getSelection();
後,我失去焦點,並希望重新設置的選擇: var r