论坛帮助 |
社区圈子 |
日历事件 |
2022-06-19, 12:43 | #1 | ||
|
|||
正式会员
等级: 六袋长老
|
找了两天都没找到问题所在,不知道什么原因。本人也是菜鸟中的菜鸟,想请论坛中的大佬们帮忙看下是代码哪儿有问题。 图片红框处我是不是写的不对! 代码:
var scriptName = "Add_frame"; var settingFile = { name: scriptName + "__setting.json", folder: Folder.myDocuments + "/LA_AI_Scripts/" }; var win = new Window("dialog", "选择对象加边框|智能标尺寸 V1.1 "); win.orientation = "column"; win.alignChildren = ["fill", "fill"]; var panel = win.add("panel", undefined, "批量加框"); panel.orientation = "column"; panel.alignChildren = ["fill", "fill"]; panel.margins = 12; var group1 = panel.add("group"); group1.orientation = "row"; group1.alignChildren = ["left", "center"]; group1.add("statictext", undefined, "距离(mm)"); var juli = group1.add("edittext", [0, 0, 40, 20], "0"); var addColorCheck = group1.add("checkbox", undefined, "描边(mm)"); addColorCheck.value = true; var miaobian = group1.add("edittext", [0, 0, 40, 20], "0.1"); miaobian.enabled = true; var biaozu = group1.add("checkbox", undefined, "标注尺寸"); biaozu.value = true; biaozu.onClick = function () { if (biaozu.value == true) { doc = app.activeDocument; theSelect = doc.selection; for (var i = 0; i < theSelect.length; i += 1) { x = theSelect[i].left; y = theSelect[i].top; w = theSelect[i].width; h = theSelect[i].height; s = 12; asize = 20; if (h < 50 || w < 50) { asize = 5; } tsize = 20; if (h < 60 || w < 60) { tsize = 16; } redColor = new CMYKColor(); redColor.black = 0; redColor.cyan = 0; redColor.magenta = 100; redColor.yellow = 0; var g1 = doc.groupItems.add(); var t2 = g1.textFrames.add(); t2.contents = (Math.round(w * 0.35277778 * 100) / 100) + "×" + (Math.round(h * 0.35277778 * 100) / 100) + " mm"; t2.textRange.characterAttributes.size = tsize; t2.textRange.characterAttributes.fillColor = redColor; t2.left = (x + (w / 2)) - (t2.width / 2); t2.top = ((y - h) - s) - (s / 2); } } }; var group2 = panel.add("group"); group2.orientation = "row"; group2.alignChildren = "fill"; var addLayerCheck = group2.add("checkbox", undefined, "边框图层"); addLayerCheck.value = false; var objGBCheck = group2.add("checkbox", undefined, "可视边界"); objGBCheck.value = false; var heise = group2.add("checkbox", undefined, "黑色描边"); heise.value = false; var zdqz = group2.add("checkbox", undefined, "自动群组"); zdqz.value = true; addLayerCheck.onClick = function () { if (addLayerCheck.value == true) { zdqz.value = false; } }; zdqz.onClick = function () { if (zdqz.value == true) { addLayerCheck.value = false } }; addColorCheck.onClick = function () { miaobian.enabled = heise.enabled = addColorCheck.value; }; var qzpanel = win.add("panel", undefined, "智能群组"); qzpanel.orientation = "column"; qzpanel.alignChildren = ["left", "center"]; qzpanel.margins = 12; var qzgroup1 = qzpanel.add("group"); qzgroup1.orientation = "row"; var groupL = qzgroup1.add("group"); groupL.orientation = "row"; groupL.add("statictext", undefined, "群组容差"); var rongcha = groupL.add("edittext", [0, 0, 40, 20], "1"); var groupR = qzgroup1.add("group"); groupR.orientation = "row"; groupR.alignChildren = ["right", "center"]; groupR.margins = [95, 0, 0, 0]; var qzok = groupR.add("button", [0, 0, 100, 30], "仅群组"); qzok.helpTip = "仅群组,不加边框"; qzok.onClick = zhinengqunzu; var doc = app.activeDocument; var u = 2.83464566929134; var layName = "边框图层"; var winButtons = win.add("group"); winButtons.alignChildren = ["fill", "fill"]; winButtons.margins = [0, 0, 0, 0]; var cancel = winButtons.add("button", undefined, "取消"); cancel.helpTip = "取消"; cancel.onClick = function () { win.close(); }; var ok = winButtons.add("button", undefined, "确定", { name: "ok" }); ok.helpTip = "确定"; ok.onClick = startAction; //~ ok.active = true; function newColor(c, m, y, k) { var newColor = new CMYKColor(); newColor.cyan = c; newColor.magenta = m; newColor.yellow = y; newColor.black = k; return newColor; } function zhinengqunzu() { var theSelect = doc.selection; if (theSelect.length > 0) { var duixiang = new Array(theSelect.length); for (var i = 0; i < theSelect.length; i += 1) { duixiang[i] = i; } var zuobiao = new Array(4); var duibi = new Array(4); var qunzu = new Array(); var zongshu = 0; var weizhi = 0; var xh_zongshu = 0; var chongdie = true; var rongchazhi = rongcha.text * u; while (duixiang.length != 0) { qunzu[zongshu] = new Array(); qunzu[zongshu].push(duixiang[duixiang.length - 1]); zuobiao = theSelect[duixiang[duixiang.length - 1]].geometricBounds; duixiang.splice(duixiang.length - 1, 1); chongdie = true; while (chongdie) { chongdie = false; weizhi = duixiang.length - 1; xh_zongshu = duixiang.length; for (var i = 0; i < xh_zongshu; i += 1) { duibi = theSelect[duixiang[weizhi]].geometricBounds; chongdie = chongdiepanduan(duibi, zuobiao); if (chongdie) { if (duibi[0] < zuobiao[0]) { zuobiao[0] = duibi[0]; } if (duibi[2] > zuobiao[2]) { zuobiao[2] = duibi[2]; } if (duibi[1] > zuobiao[1]) { zuobiao[1] = duibi[1]; } if (duibi[3] < zuobiao[3]) { zuobiao[3] = duibi[3]; } qunzu[zongshu].push(duixiang[weizhi]); duixiang.splice(weizhi, 1); } weizhi = weizhi - 1; } if (duixiang.length == xh_zongshu) { chongdie = false; } else { chongdie = true; } } zongshu++; } function xiaodaoda(a, b) { return a - b; } for (var i = 0; i < qunzu.length; i += 1) { qunzu[i].sort(xiaodaoda); var linshiqunzu = app.activeDocument.groupItems.add(); for (n = qunzu[i].length - 1; n > -1; n--) { theSelect[qunzu[i][n]].moveToBeginning(linshiqunzu); } } function chongdiepanduan(bj1, bj2) { var chongdiejilu = false; if (bj1[0] > (bj2[0] - rongchazhi) && bj1[0] < (bj2[2] + rongchazhi)) { if (bj1[1] < (bj2[1] + rongchazhi) && bj1[1] > (bj2[3] - rongchazhi)) { chongdiejilu = true; } else if (bj1[3] > (bj2[3] - rongchazhi) && bj1[3] < (bj2[1] + rongchazhi)) { chongdiejilu = true; } else { if (bj1[3] < (bj2[3] - rongchazhi) && bj1[1] > (bj2[1] + rongchazhi)) { chongdiejilu = true; } } } else if (bj1[2] > (bj2[0] - rongchazhi) && bj1[2] < (bj2[2] + rongchazhi)) { if (bj1[1] < (bj2[1] + rongchazhi) && bj1[1] > (bj2[3] - rongchazhi)) { chongdiejilu = true; } else if (bj1[3] > (bj2[3] - rongchazhi) && bj1[3] < (bj2[1] + rongchazhi)) { chongdiejilu = true; } else { if (bj1[3] < (bj2[3] - rongchazhi) && bj1[1] > (bj2[1] + rongchazhi)) { chongdiejilu = true; } } } else { if (bj1[0] < (bj2[0] - rongchazhi) && bj1[2] > (bj2[2] + rongchazhi)) { if (bj1[1] < (bj2[1] + rongchazhi) && bj1[1] > (bj2[3] - rongchazhi)) { chongdiejilu = true; } else if (bj1[3] > (bj2[3] - rongchazhi) && bj1[3] < (bj2[1] + rongchazhi)) { chongdiejilu = true; } else { if (bj1[3] < (bj2[3] - rongchazhi) && bj1[1] > (bj2[1] + rongchazhi)) { chongdiejilu = true; } } } } return chongdiejilu; } } else { alert("请先选择要智能群组的对象再运行脚本!!", "错误提示"); } win.close(); } function startAction() { var theSelect = doc.selection; if (theSelect.length > 0) { for (var i = 0; i < theSelect.length; i += 1) { var bound = NO_CLIP_BOUNDS(theSelect[i]); var left = bound[0] - (juli.text * u); var tops = bound[1] + (juli.text * u); var width = (bound[2] - bound[0]) + (juli.text * 2 * u); var height = (bound[1] - bound[3]) + (juli.text * 2 * u); if (addLayerCheck.value == true) { try { var newLayer = doc.layers[layName]; newLayer.locked = false; newLayer.visible = true; } catch (err) { var newLayer = doc.layers.add(); newLayer.name = layName; } var rect = newLayer.pathItems.rectangle(tops, left, width, height); } else { var rect = doc.activeLayer.pathItems.rectangle(tops, left, width, height); } if (addColorCheck.value == true) { rect.stroked = true; rect.strokeWidth = miaobian.text * u; if (heise.value == true) { rect.strokeColor = newColor(0, 0, 0, 100); } else { rect.strokeColor = newColor(0, 100, 0, 0); } } else { rect.stroked = false; } rect.filled = false; rect.fillColor = NoColor; rect.selected = true; } if (zdqz.value == true) { zhinengqunzu(); } } else { alert("请先选择对象再运行脚本!!", "错误提示"); win.close(); } win.close(); } function NO_CLIP_BOUNDS(the_obj) { var NO_CLIP_OBJECTS_AND_MASKS = new Array(); GET_NO_CLIP_OBJECTS_AND_MASKS(the_obj); var v_left = new Array(); var g_left = new Array(); var v_top = new Array(); var g_top = new Array(); var v_right = new Array(); var g_right = new Array(); var v_bottom = new Array(); var g_bottom = new Array(); for (var i = 0; i < NO_CLIP_OBJECTS_AND_MASKS.length; i += 1) { g_left[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[0]; v_left[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[0]; g_top[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[1]; v_top[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[1]; g_right[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[2]; v_right[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[2]; g_bottom[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[3]; v_bottom[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[3]; } if (objGBCheck.value == true) { var v_L = MIN_IN_ARRAY(v_left); var v_T = MAX_IN_ARRAY(v_top); var v_R = MAX_IN_ARRAY(v_right); var v_B = MIN_IN_ARRAY(v_bottom); return [v_L, v_T, v_R, v_B]; } else { var g_L = MIN_IN_ARRAY(g_left); var g_T = MAX_IN_ARRAY(g_top); var g_R = MAX_IN_ARRAY(g_right); var g_B = MIN_IN_ARRAY(g_bottom); return [g_L, g_T, g_R, g_B]; } function GET_NO_CLIP_OBJECTS_AND_MASKS(the_obj) { if (IS_CLIP(the_obj)) { NO_CLIP_OBJECTS_AND_MASKS.push(the_obj.pageItems[0]); return; } if (the_obj.constructor.name == "GroupItem") { try { var N_sub_obj = the_obj.pageItems.length; for (var i = 0; i < N_sub_obj; i += 1) { GET_NO_CLIP_OBJECTS_AND_MASKS(the_obj.pageItems[i]); } } catch (error) { } return; } NO_CLIP_OBJECTS_AND_MASKS.push(the_obj); return; } } function IS_CLIP(the_obj) { try { if (the_obj.constructor.name == "GroupItem") { if (the_obj.clipped) { return true; } } } catch (error) { } return false; } function MAX_IN_ARRAY(the_array) { var MAX = the_array[0]; for (var i = 0; i < the_array.length; i += 1) { if (the_array[i] > MAX) { MAX = the_array[i]; } } return MAX; } function MIN_IN_ARRAY(the_array) { var MIN = the_array[0]; for (var i = 0; i < the_array.length; i += 1) { if (the_array[i] < MIN) { MIN = the_array[i]; } } return MIN; }; function openURL(address) { var f = File(Folder.temp + "/aiOpenURL.url"); f.open("w"); f.write("[InternetShortcut]\rURL=http://" + address + "\r"); f.close(); f.execute(); } function saveSettings() { var $file = new File(settingFile.folder + settingFile.name); var data = [juli.text, miaobian.text, addColorCheck.value, addLayerCheck.value, objGBCheck.value, heise.value, zdqz.value, rongcha.text, biaozu.value].toString(); $file.open("w"); $file.write(data); $file.close(); } function loadSettings() { var $file = File(settingFile.folder + settingFile.name); if ($file.exists) { try { $file.open("r"); var data = $file.read().split("\n"); var $main = data[0].split(","); juli.text = $main[0]; miaobian.text = $main[1]; addColorCheck.value = $main[2] === "true"; addLayerCheck.value = $main[3] === "true"; objGBCheck.value = $main[4] === "true"; heise.value = $main[5] === "true"; zdqz.value = $main[6] === "true"; rongcha.text = $main[7]; biaozu.value = $main[8] === "true"; miaobian.enabled = heise.enabled = addColorCheck.value; } catch (e) { } $file.close(); } } win.onClose = function () { saveSettings(); return true; }; function checkSettingFolder() { var $folder = new Folder(settingFile.folder); if (!$folder.exists) { $folder.create() } } checkSettingFolder(); loadSettings(); win.center(); win.show(); |
||
2022-06-19, 17:34 | 只看该作者 #2 | ||
|
|||
正式会员
等级: 六袋长老
|
var settingFile = { name: scriptName + "__setting.json", folder: Folder.myDocuments + "/LA_AI_Scripts/" }; var win = new Window("dialog", "选择对象加边框|智能标尺寸 V1.1 "); win.orientation = "column"; win.alignChildren = ["fill", "fill"]; var panel = win.add("panel", undefined, "批量加框"); panel.orientation = "column"; panel.alignChildren = ["fill", "fill"]; panel.margins = 12; var group1 = panel.add("group"); group1.orientation = "row"; group1.alignChildren = ["left", "center"]; group1.add("statictext", undefined, "距离(mm)"); var juli = group1.add("edittext", [0, 0, 40, 20], "0"); var addColorCheck = group1.add("checkbox", undefined, "描边(mm)"); addColorCheck.value = true; var miaobian = group1.add("edittext", [0, 0, 40, 20], "0.1"); miaobian.enabled = true; var biaozu = group1.add("checkbox", undefined, "标注尺寸"); biaozu.value = true; var group2 = panel.add("group"); group2.orientation = "row"; group2.alignChildren = "fill"; var addLayerCheck = group2.add("checkbox", undefined, "边框图层"); addLayerCheck.value = false; var objGBCheck = group2.add("checkbox", undefined, "可视边界"); objGBCheck.value = false; var heise = group2.add("checkbox", undefined, "黑色描边"); heise.value = false; var zdqz = group2.add("checkbox", undefined, "自动群组"); zdqz.value = true; addLayerCheck.onClick = function () { if (addLayerCheck.value == true) { zdqz.value = false; } }; zdqz.onClick = function () { if (zdqz.value == true) { addLayerCheck.value = false } }; addColorCheck.onClick = function () { miaobian.enabled = heise.enabled = addColorCheck.value; }; var qzpanel = win.add("panel", undefined, "智能群组"); qzpanel.orientation = "column"; qzpanel.alignChildren = ["left", "center"]; qzpanel.margins = 12; var qzgroup1 = qzpanel.add("group"); qzgroup1.orientation = "row"; var groupL = qzgroup1.add("group"); groupL.orientation = "row"; groupL.add("statictext", undefined, "群组容差"); var rongcha = groupL.add("edittext", [0, 0, 40, 20], "1"); var groupR = qzgroup1.add("group"); groupR.orientation = "row"; groupR.alignChildren = ["right", "center"]; groupR.margins = [95, 0, 0, 0]; var qzok = groupR.add("button", [0, 0, 100, 30], "仅群组"); qzok.helpTip = "仅群组,不加边框"; qzok.onClick = zhinengqunzu; var doc = app.activeDocument; var u = 2.83464566929134; var layName = "边框图层"; var winButtons = win.add("group"); winButtons.alignChildren = ["fill", "fill"]; winButtons.margins = [0, 0, 0, 0]; var cancel = winButtons.add("button", undefined, "取消"); cancel.helpTip = "取消"; cancel.onClick = function () { win.close(); }; var ok = winButtons.add("button", undefined, "确定", { name: "ok" }); ok.helpTip = "确定"; ok.onClick = startAction; //~ ok.active = true; function newColor(c, m, y, k) { var newColor = new CMYKColor(); newColor.cyan = c; newColor.magenta = m; newColor.yellow = y; newColor.black = k; return newColor; } function zhinengqunzu() { var theSelect = doc.selection; if (theSelect.length > 0) { var duixiang = new Array(theSelect.length); for (var i = 0; i < theSelect.length; i += 1) { duixiang[i] = i; } var zuobiao = new Array(4); var duibi = new Array(4); var qunzu = new Array(); var zongshu = 0; var weizhi = 0; var xh_zongshu = 0; var chongdie = true; var rongchazhi = rongcha.text * u; while (duixiang.length != 0) { qunzu[zongshu] = new Array(); qunzu[zongshu].push(duixiang[duixiang.length - 1]); zuobiao = theSelect[duixiang[duixiang.length - 1]].geometricBounds; duixiang.splice(duixiang.length - 1, 1); chongdie = true; while (chongdie) { chongdie = false; weizhi = duixiang.length - 1; xh_zongshu = duixiang.length; for (var i = 0; i < xh_zongshu; i += 1) { duibi = theSelect[duixiang[weizhi]].geometricBounds; chongdie = chongdiepanduan(duibi, zuobiao); if (chongdie) { if (duibi[0] < zuobiao[0]) { zuobiao[0] = duibi[0]; } if (duibi[2] > zuobiao[2]) { zuobiao[2] = duibi[2]; } if (duibi[1] > zuobiao[1]) { zuobiao[1] = duibi[1]; } if (duibi[3] < zuobiao[3]) { zuobiao[3] = duibi[3]; } qunzu[zongshu].push(duixiang[weizhi]); duixiang.splice(weizhi, 1); } weizhi = weizhi - 1; } if (duixiang.length == xh_zongshu) { chongdie = false; } else { chongdie = true; } } zongshu++; } function xiaodaoda(a, b) { return a - b; } for (var i = 0; i < qunzu.length; i += 1) { qunzu[i].sort(xiaodaoda); var linshiqunzu = app.activeDocument.groupItems.add(); for (n = qunzu[i].length - 1; n > -1; n--) { theSelect[qunzu[i][n]].moveToBeginning(linshiqunzu); } } function chongdiepanduan(bj1, bj2) { var chongdiejilu = false; if (bj1[0] > (bj2[0] - rongchazhi) && bj1[0] < (bj2[2] + rongchazhi)) { if (bj1[1] < (bj2[1] + rongchazhi) && bj1[1] > (bj2[3] - rongchazhi)) { chongdiejilu = true; } else if (bj1[3] > (bj2[3] - rongchazhi) && bj1[3] < (bj2[1] + rongchazhi)) { chongdiejilu = true; } else { if (bj1[3] < (bj2[3] - rongchazhi) && bj1[1] > (bj2[1] + rongchazhi)) { chongdiejilu = true; } } } else if (bj1[2] > (bj2[0] - rongchazhi) && bj1[2] < (bj2[2] + rongchazhi)) { if (bj1[1] < (bj2[1] + rongchazhi) && bj1[1] > (bj2[3] - rongchazhi)) { chongdiejilu = true; } else if (bj1[3] > (bj2[3] - rongchazhi) && bj1[3] < (bj2[1] + rongchazhi)) { chongdiejilu = true; } else { if (bj1[3] < (bj2[3] - rongchazhi) && bj1[1] > (bj2[1] + rongchazhi)) { chongdiejilu = true; } } } else { if (bj1[0] < (bj2[0] - rongchazhi) && bj1[2] > (bj2[2] + rongchazhi)) { if (bj1[1] < (bj2[1] + rongchazhi) && bj1[1] > (bj2[3] - rongchazhi)) { chongdiejilu = true; } else if (bj1[3] > (bj2[3] - rongchazhi) && bj1[3] < (bj2[1] + rongchazhi)) { chongdiejilu = true; } else { if (bj1[3] < (bj2[3] - rongchazhi) && bj1[1] > (bj2[1] + rongchazhi)) { chongdiejilu = true; } } } } return chongdiejilu; } } else { alert("请先选择要智能群组的对象再运行脚本!!", "错误提示"); } win.close(); } function startAction() { theSelect = doc.selection; if (theSelect.length > 0) { for (var i = 0; i < theSelect.length; i += 1) { var x = theSelect[i].left; var y = theSelect[i].top; var w = theSelect[i].width; var h = theSelect[i].height; var bound = NO_CLIP_BOUNDS(theSelect[i]); var left = bound[0] - (juli.text * u); var tops = bound[1] + (juli.text * u); var width = (bound[2] - bound[0]) + (juli.text * 2 * u); var height = (bound[1] - bound[3]) + (juli.text * 2 * u); var s = 12; var asize = 20; if (h < 50 || w < 50) { asize = 5; } tsize = 20; if (h < 60 || w < 60) { tsize = 16; } if (biaozu.value == true) { var redColor = new CMYKColor(); redColor.black = 0; redColor.cyan = 0; redColor.magenta = 100; redColor.yellow = 0; var g1 = doc.groupItems.add(); var t2 = g1.textFrames.add(); t2.contents = (Math.round(w * 0.35277778 * 100) / 100) + "×" + (Math.round(h * 0.35277778 * 100) / 100) + " mm"; t2.textRange.characterAttributes.size = tsize; t2.textRange.characterAttributes.fillColor = redColor; t2.left = (x + (w / 2)) - (t2.width / 2); t2.top = ((y - h) - s) - (s / 2); } if (addLayerCheck.value == true) { try { var newLayer = doc.layers[layName]; newLayer.locked = false; newLayer.visible = true; } catch (err) { var newLayer = doc.layers.add(); newLayer.name = layName; } var rect = newLayer.pathItems.rectangle(tops, left, width, height); } else { var rect = doc.activeLayer.pathItems.rectangle(tops, left, width, height); } if (addColorCheck.value == true) { rect.stroked = true; rect.strokeWidth = miaobian.text * u; if (heise.value == true) { rect.strokeColor = newColor(0, 0, 0, 100); } else { rect.strokeColor = newColor(0, 100, 0, 0); } } else { rect.stroked = false; } rect.filled = false; rect.fillColor = NoColor; rect.selected = true; } if (zdqz.value == true) { zhinengqunzu(); } } else { alert("请先选择对象再运行脚本!!", "错误提示"); win.close(); } win.close(); } function NO_CLIP_BOUNDS(the_obj) { var NO_CLIP_OBJECTS_AND_MASKS = new Array(); GET_NO_CLIP_OBJECTS_AND_MASKS(the_obj); var v_left = new Array(); var g_left = new Array(); var v_top = new Array(); var g_top = new Array(); var v_right = new Array(); var g_right = new Array(); var v_bottom = new Array(); var g_bottom = new Array(); for (var i = 0; i < NO_CLIP_OBJECTS_AND_MASKS.length; i += 1) { g_left[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[0]; v_left[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[0]; g_top[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[1]; v_top[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[1]; g_right[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[2]; v_right[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[2]; g_bottom[i] = NO_CLIP_OBJECTS_AND_MASKS[i].geometricBounds[3]; v_bottom[i] = NO_CLIP_OBJECTS_AND_MASKS[i].visibleBounds[3]; } if (objGBCheck.value == true) { var v_L = MIN_IN_ARRAY(v_left); var v_T = MAX_IN_ARRAY(v_top); var v_R = MAX_IN_ARRAY(v_right); var v_B = MIN_IN_ARRAY(v_bottom); return [v_L, v_T, v_R, v_B]; } else { var g_L = MIN_IN_ARRAY(g_left); var g_T = MAX_IN_ARRAY(g_top); var g_R = MAX_IN_ARRAY(g_right); var g_B = MIN_IN_ARRAY(g_bottom); return [g_L, g_T, g_R, g_B]; } function GET_NO_CLIP_OBJECTS_AND_MASKS(the_obj) { if (IS_CLIP(the_obj)) { NO_CLIP_OBJECTS_AND_MASKS.push(the_obj.pageItems[0]); return; } if (the_obj.constructor.name == "GroupItem") { try { var N_sub_obj = the_obj.pageItems.length; for (var i = 0; i < N_sub_obj; i += 1) { GET_NO_CLIP_OBJECTS_AND_MASKS(the_obj.pageItems[i]); } } catch (error) { } return; } NO_CLIP_OBJECTS_AND_MASKS.push(the_obj); return; } } function IS_CLIP(the_obj) { try { if (the_obj.constructor.name == "GroupItem") { if (the_obj.clipped) { return true; } } } catch (error) { } return false; } function MAX_IN_ARRAY(the_array) { var MAX = the_array[0]; for (var i = 0; i < the_array.length; i += 1) { if (the_array[i] > MAX) { MAX = the_array[i]; } } return MAX; } function MIN_IN_ARRAY(the_array) { var MIN = the_array[0]; for (var i = 0; i < the_array.length; i += 1) { if (the_array[i] < MIN) { MIN = the_array[i]; } } return MIN; }; function openURL(address) { var f = File(Folder.temp + "/aiOpenURL.url"); f.open("w"); f.write("[InternetShortcut]\rURL=http://" + address + "\r"); f.close(); f.execute(); } function saveSettings() { var $file = new File(settingFile.folder + settingFile.name); var data = [juli.text, miaobian.text, addColorCheck.value, addLayerCheck.value, objGBCheck.value, heise.value, zdqz.value, rongcha.text, biaozu.value].toString(); $file.open("w"); $file.write(data); $file.close(); } function loadSettings() { var $file = File(settingFile.folder + settingFile.name); if ($file.exists) { try { $file.open("r"); var data = $file.read().split("\n"); var $main = data[0].split(","); juli.text = $main[0]; miaobian.text = $main[1]; addColorCheck.value = $main[2] === "true"; addLayerCheck.value = $main[3] === "true"; objGBCheck.value = $main[4] === "true"; heise.value = $main[5] === "true"; zdqz.value = $main[6] === "true"; rongcha.text = $main[7]; biaozu.value = $main[8] === "true"; miaobian.enabled = heise.enabled = addColorCheck.value; } catch (e) { } $file.close(); } } win.onClose = function () { saveSettings(); return true; }; function checkSettingFolder() { var $folder = new Folder(settingFile.folder); if (!$folder.exists) { $folder.create() } } checkSettingFolder(); loadSettings(); win.center(); win.show(); |
||
右列会员因为此帖价值甚高向 luck2004 表示感谢: |
dt352 (2022-06-19)
|