「AHK 快餐店[8] 之 读者互动[1]」的评论 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/ 分享免费、小巧、实用、有趣、绿色的软件 Mon, 19 Mar 2012 01:35:02 +0000 hourly 1 https://wordpress.org/?v=6.8.1 评论者:sfufoet http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-105323 Mon, 19 Mar 2012 01:35:02 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-105323 回复给 brook

@brook, 把谷歌拼音输入法切换到拼音模式(点击那个 中的按钮)+全角模式(点击输入法状态条的月亮图标),按下 \ 就可以输入 \

]]>
评论者:brook http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-105311 Sun, 18 Mar 2012 17:11:41 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-105311 菜鸟好奇求问“\”“\”,前面那个斜杠是怎么输入的?

]]>
评论者:keeds http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-80500 Mon, 11 Apr 2011 02:08:52 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-80500 Win7中必须把
我的电脑\%clipboard%
改成
计算机\%clipboard%

]]>
评论者:furusato http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-79365 Sat, 12 Mar 2011 14:22:51 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-79365 想知道一下如何模拟双击托盘区的某图标
我想控制的软件最小化的时候就退到托盘区了
想复原的话,就只能双击托盘区图标
重新执行一下原来的.exe都不行
有没有什么办法可以做到呢?

]]>
评论者:李二嫂的猪 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-21064 Wed, 25 Jun 2008 01:23:15 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-21064 AutoIt 脚本:

$RegWriteResult = RegWrite(“HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit”,”LastKey”,”REG_SZ”,$RegKey)
If $RegWriteResult Then
;打开注册表编辑器
Run(“regedit”)
Else
;如果没有注册表访问权限,这个程序就无法使用
MsgBox(16,”错误”,”错误,请检查是否有注册表修改权限!”)
EndIf

]]>
评论者:helfee http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-13465 Wed, 31 Oct 2007 14:25:31 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-13465 @tireless,比如上面的脚本这样~

#j::
send ^c
clipwait
StringReplace, clipboard, clipboard, \, \, All
StringLeft, reg,clipboard, 5 ;加上这个
if reg=HKEY_ ;不是 HKEY_ 开头就不打开
{
RegWrite, REG_SZ, HKCU, Software\Microsoft\Windows\CurrentVersion\Applets\Regedit, LastKey,%clipboard%
run regedit /m ;多开..
}
return

是说这个不?..

]]>
评论者:sfufoet http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-13461 Wed, 31 Oct 2007 13:39:40 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-13461 @tireless,我也不知道,在煎蛋学的。digg 的评论都是这样的。

这个好啊,比写个 to ×××× 方便多了。

]]>
评论者:tireless http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-13458 Wed, 31 Oct 2007 12:48:26 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-13458 @helfee,没看懂你的意思
ps:这个“@”是哪里的“语言”?AHK里面的?

]]>
评论者:helfee http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-13451 Wed, 31 Oct 2007 07:18:50 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-13451 @tireless,可以加个判断呀,是注册表路径了再继续
ps:绝对不残忍,哈哈,软件读写注册表很普通吧

]]>
评论者:tireless http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/comment-page-1/#comment-13445 Wed, 31 Oct 2007 05:02:26 +0000 http://inloveinparis.com/ahk-fast-food-restaurant-8-interactive-with-reader-1/#comment-13445 那个查找注册表的是不是太残忍了,每查找一次都要写入注册表值一次。

]]>