幸运之星正在降临...
点击领取今天的签到奖励!
恭喜!您今天获得了{{mission.data.mission.credit}}积分
我的优惠劵
-
¥优惠劵使用时效:无法使用使用时效:
之前
使用时效:永久有效优惠劵ID:×
没有优惠劵可用!
额 不能换行啊回复
改成V1用的代码: autostart:=1 autostartLnk:=A_Startup . "任意给个名字.lnk" if(autostart) ;如果开启开机自启动 { If(FileExist(autostartLnk)) { FileGetShortcut,autostartLnk, lnkTarget if(lnkTarget!=A_ScriptFullPath) FileCreateShortcut,%A_ScriptFullPath%, %autostartLnk% } else { FileCreateShortcut,%A_ScriptFullPath%, %autostartLnk% } } else { If FileExist(autostartLnk) { FileDelete,%autostartLnk% } }
激活当前窗口音量直接设置100就行 这里是百分比 SetAppVolume(ProcessId, Volume := 100)
据我所知,浏览器声音播放不通过浏览器进程实现,所以没办法控制
网站终于恢复了啊
学习
我写了代码了,比较简陋,您看下能不能加载 (function(){ let prettyprinted = document.querySelectorAll('.prettyprinted'); for(let i=0;i<prettyprinted.length;i++){ prettyprinted[i].insertAdjacentHTML('beforebegin', `复制全部`); } copy_code = function(e){ let code_str = e.parentElement.nextElementSibling.innerText; copyTextToClipboard(code_str); } function fallbackCopyTextToClipboard() { // 1.创建一个可选中元素 let textArea = document.createElement("textarea"); textArea.value = window.location.href; // 2.使用定位,阻止页面滚动 textArea.style.top = "0"; textArea.style.left = "0"; textArea.style.position = "fixed"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'successful' : 'unsuccessful'; console.log('Fallback: Copying text command was ' + msg); } catch (err) { console.error('Fallback: Oops, unable to copy', err); } // 3.移除元素 document.body.removeChild(textArea); } function copyTextToClipboard(text) { if (!navigator.clipboard) { fallbackCopyTextToClipboard(text); return; } navigator.clipboard.writeText(text).then(function() { console.log('Async: Copying to clipboard was successful!'); }, function(err) { console.error('Async: Could not copy text: ', err); }); } })();
我可以试试写个js 晚点我调试好了给您留言
哦 系统层我用utools,ahk方面我有自己写的常驻ahk来实现调用各个脚本 应该用不上ra了
后来我想明白了 创建一个新的gui来显示文字就可以了