鸡顶核
鸡顶核
千万次的撸,只为解开你的谜。我是阿呆,我在江湖
关注数: 53
粉丝数: 9
发帖数: 9,545
关注贴吧数: 21
俄挺和前水平得背部发力质疑,高手请进 练习俄挺有段时间了,进展还算顺利,但一个问题一直困扰着我。 正常我们背部肌肉应该收缩(contraction)时最有力,这时候肩胛骨应该收缩,引体向上时的背部肌肉就明显能看出来极限收缩(下图一),也可以拿健美展示权当作一个例子,也是收缩(下图二) 那为什么俄挺是弓背,尤其是冲肩时要强烈的伸展(protraction),这样的背部肌肉不是使不上什么力气嘛,而俄挺又需要背部的极大支撑,所以有没可能现在的俄挺是舍近求远的低效模式,只是一个疑问的探讨,轻拍虾虾侬 :--D
怎么限定文件类型优先显示 有没大家伙解释下,在搜索结果近似或相同的情况下,如何指定某个文件类型优先显示?比如搜索1,会出现1的文件夹,1的excel, 1.**的word, 1的ahk,等等, 但我想把1的ahk文件类型优先显示,这样直接选中了,焦点在的就是我想要的,我只要按下enter就可以直接打开,如果排位靠后,那我就要一个个的往下选了,这就违背了这个神级软件强化效率的初衷。谢!
关于一键取网址内容 写了个脚本,想自动取//和第一个/之间的内容作为文件或图片的标题,但因为有http://和https://的区别,所以名字总是取不完整,下面是写的脚本。 ^!z::suspend ~LButton:: CoordMode, Mouse, Screen SetKeyDelay 0, 10 c := 0 MouseGetPos, x1, y1 KeyWait, LButton MouseGetPos, x2, y2 if (x1<>x2 or y1<>y2) { Getkeystate("#", "`"), Keywait } else if (A_priorHotKey = "~LButton" and A_TimeSincePriorHotkey < 400){ Getkeystate("#", "`"), Keywait } return #`:: c := 1 Send ^c clip:=clipboard clipwait filename = %clip% subpart2 = / FoundPos2 := InStr(filename, subpart2, false, 9, 1) subpart = s FoundPos := InStr(filename, subpart, false, 1, 1) if FoundPos>=0&FoundPos><>5 { filename := SubStr(filename,9,FoundPos2-9) } else if FoundPos>=0&FoundPos<=5 { filename := SubStr(filename,FoundPos+3,FoundPos2-9) } FileAppend, %A_Hour%%A_Min%%A_SEC%%A_MSEC%%filename%, D:\Downloads\333.txt FileAppend,`n, D:\Downloads\333.txt clip= tooltip 成功 sleep 2000 tooltip return 仔细研究了下,好像只过第一个if没经过第二个else if. 还有这个多一个s之后的调用确实太麻烦了,想了好久还是不通,,请高人点播下,谢!
关于一键取网址内容 写了个脚本,想自动取//和第一个/之间的内容作为文件或图片的标题,但因为有http://和https://的区别,所以名字总是取不完整,下面是写的脚本。 ^!z::suspend ~LButton:: CoordMode, Mouse, Screen SetKeyDelay 0, 10 c := 0 MouseGetPos, x1, y1 KeyWait, LButton MouseGetPos, x2, y2 if (x1<>x2 or y1<>y2) { Getkeystate("#", "`"), Keywait } else if (A_priorHotKey = "~LButton" and A_TimeSincePriorHotkey < 400){ Getkeystate("#", "`"), Keywait } return #`:: c := 1 Send ^c clip:=clipboard clipwait filename = %clip% subpart2 = / FoundPos2 := InStr(filename, subpart2, false, 9, 1) subpart = s FoundPos := InStr(filename, subpart, false, 1, 1) if FoundPos>=0&FoundPos><>5 { filename := SubStr(filename,9,FoundPos2-9) } else if FoundPos>=0&FoundPos<=5 { filename := SubStr(filename,FoundPos+3,FoundPos2-9) } FileAppend, %A_Hour%%A_Min%%A_SEC%%A_MSEC%%filename%, D:\Downloads\333.txt FileAppend,`n, D:\Downloads\333.txt clip= tooltip 成功 sleep 2000 tooltip return 仔细研究了下,好像只过第一个if没经过第二个else if. 还有这个多一个s之后的调用确实太麻烦了,想了好久还是不通,,请高人点播下,谢!
一个很有趣的脚本,出的幺蛾子很怪 ;GoldenDict 划译插件[AHK] ;version 0.9 ;
[email protected]
;2016-01-08 ;GUI及其他功能完善有待日后空闲 ;========使用说明======== ;^!z键 启用/停用 脚本 ;鼠标拖选、双击选词翻译 ^!z::Suspend ~LButton:: CoordMode, Mouse, Screen SetKeyDelay 0, 10 c := 0 MouseGetPos, x1, y1 KeyWait, LButton MouseGetPos, x2, y2 if (x1<>x2 or y1<>y2) { gosub, Copy } else if (A_priorHotKey = "~LButton" and A_TimeSincePriorHotkey < 400){ gosub, Copy } return Copy: c := 1 Send ^c return OnClipboardChange: if (c) { Send ^{c 2} ;MsgBox %clipboard% } return ------------------------------ 首先感谢作者写了这个很棒的脚本。 正常都可以用,问题在暂停那。 如果之前没有内容被选中,那么按了暂停组合键,然后选内容并复制,那不会有弹窗出来,这也是我们希望的结果。但如果有内容选中的情况下按了暂停组合键,然后去选其他内容并复制,就还是会有弹窗出来。 求高手相助。 谢并新年快乐!
如何限制脚本的范围 写了个脚本,是双击返回文件夹的上一层的 RButton:: if (A_TimeSincePriorHotkey>120 && A_TimeSincePriorHotkey<300) send, !{up} else send, {RButton} Return 但右键跟失效了一样,做什么都是右键菜单。chrome的插件smartup的右键手势都不能用了,能不能只针对这个右键双击动作统一有作用,对右键的其他手势都不受影响,谢谢!
1
下一页