2014-01-15 62 views
0

我正在尋找一個AHK腳本執行以下操作:放置文本

  1. 顯示彈出框
  2. 在彈出框中輸入文本
  3. 顯示standardtext +字符串。

所以,當比如我按r組成,我收到一個彈出框,我輸入馬克和我

「親愛的問候馬克」。

所以在Java中它會是這樣的

var1 = inputBox("whats your name") 
var NameRegards = function(text){ 
"dear regards" + var1 
} 
show NameRegards 

任何人的線索我怎麼能在AHK管理呢?

+0

您發佈的代碼不是Java。如果有的話,它看起來像JavaScript。在AHK中,你在哪裏遇到問題? – MCL

+0

我的意思是確實是Javascript。無論如何建議如何解決這個問題? – user181796

+0

關於如何修復? JavaScript?我沒有看到其他任何東西在這裏修復... – MCL

回答

0

這是一個未經考驗的開始..

#SingleInstance Force 
#Persistent 

Return ; Stop the startup lines otherwise #r will run on startup... 

#r:: ; [Win]+r to start this script 
InputBox, MyName, This is your Windows Title, Type your name: 
SendInput, Dear regards`, %MyName% ; Using `(On ~ key on US KB) to literally print a comma 
; SendInput, % "Dear regards, " MyName ; Alternative way 
Return 
1

如何像你描述究竟做什麼呢?

InputBox, varName, Name input, What's your name? 
MsgBox , , Output, Dear regards %varName% 

適合我。