作者phase999 (大帅)
看板EzHotKey
标题[AHK-] 接收C++判断的指令?
时间Tue Oct 9 15:36:51 2012
如题
就是目前我知道C语言内可以用system("a.exe")的方式呼叫我要使用的AHK转好的EXE档
我有一个问题是假设C语言内我有一个程式判断上下左右
if(x == 1) //上
{
system("UP.exe");
}
else if(x == 2) //下
{
system("DN.exe");
}
else if(x == 3) //右
{
system("R.exe");
}
else if(x == 4) //左
{
system("L.exe");
}
判断完一个方向後,执行对应到的EXE档
现在我想说AHK能不能把每个对应到的方向集中到一个EXE档,然後把C得到的结果,
在AHK内自行判断然後执行??
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 36.224.199.250
1F:推 ScorAlan:CompiledScript.exe [Script Parameters] 10/09 17:12
2F:→ ScorAlan:[Script Parameters]里面放1 or 2 or 3 or 4 10/09 17:14
3F:→ ScorAlan:在还没有compile之前,加入这两句做为外加参数判断 10/09 17:16
4F:→ ScorAlan:loop,%0% 10/09 17:19
5F:→ ScorAlan:Pparameter:=%A_Index% 10/09 17:19
6F:→ ScorAlan:Pparameter即为你丢入的1 or 2 or 3 or 4.... 10/09 17:21
7F:→ phase999:嗯 大概有个方向了 10/12 16:17
8F:→ phase999:可以顺便问下是写成这样吗? 10/12 16:18
9F:→ phase999:loop,%0% 10/12 16:18
10F:→ phase999:{Pparameter:=%A_Index% 10/12 16:19
11F:→ phase999:if(s == 1) ;上 10/12 16:19
12F:→ phase999:{ 执行上 10/12 16:20
13F:→ phase999:} 10/12 16:20
14F:推 ScorAlan:if (Pparameter == 1) 10/12 17:19
15F:→ ScorAlan:msgbox,放入的参数为1(代表上) 10/12 17:19
16F:→ ScorAlan:if (Pparameter == 2) 10/12 17:20
17F:→ ScorAlan:msgbox,放入的参数为2(代表下) 10/12 17:20
18F:→ ScorAlan:if (Pparameter == 3) 10/12 17:20
19F:→ ScorAlan:msgbox,放入的参数为3(代表右) 10/12 17:21
20F:→ ScorAlan:if (Pparameter == 4) 10/12 17:21
21F:→ ScorAlan:msgbox,放入的参数为4(代表左) 10/12 17:21
22F:→ ScorAlan:if(s == 1) ;上 这行的s改为Pparameter就可以了 10/12 17:23
23F:→ phase999:可以请问一下Pparameter:=%A_Index%这句,後面的%A_Index 10/13 10:39
24F:→ phase999:%是什麽意思? 10/13 10:40
25F:→ phase999:还有想再问一个问题,就是如何把C++的变数,丢到AHK里?? 10/13 10:50