This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************** | |
* 修改Windows系统时间 | |
* 用于运行超过时限无法运行的js | |
***************************/ | |
var d = new Date(); | |
var today ='date ' + [d.getFullYear(), d.getMonth()+1, d.getDate()].join('-'); | |
function changeDate(date, del){ | |
var filerf = new File ('setDate.bat'); | |
var flag = filerf.open ('w'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*************************** | |
* 作为bridge启动脚本使用 | |
* 每15分钟弹出图片提示保存文件 | |
* 点击图片使弹窗关闭 | |
* 测试环境: AI CS5 Win7 | |
* ImageURL: http://cdn1.iconfinder.com/data/icons/pry_hardware/512/Time_Machine.png | |
***************************/ | |
#target bridge | |
var time = 15; //时间设定,分钟 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************** | |
* 提示、警告框,模拟切入淡出效果 | |
* for Adobe Illustrator, Indesign | |
**********************************/ | |
#targetengine 'session'; | |
var | |
i = 0, | |
s = $.screens[0].toString().split ('-')[1].split(':'), | |
len = s[0]/10, | |
y = s[1]/2 - 158, |
NewerOlder