js调用autoit的方法
在autoit中执行js方法很简单,但反过来呢,怎样在js中调用执行autoit的函数方法? 很诡异的一个问题! 不敢想的问题,你想了,真牛 可以是可以 例子里有个可以回调的...已经忘记是哪个了 以前用html写过au3的界面- -+ autoit3 如何高用js
给个例子看看,学习一下 回复 4# rolaka
拜托努力想想啊 。。。。。。。。
加油。。。。。。。
给它想出来。
谢谢 回复rolaka
拜托努力想想啊 。。。。。。。。
加油。。。。。。。
给它想出来。
谢谢
wwwwffff 发表于 2010-8-11 05:00 http://www.autoitx.com/images/common/back.gif
; *******************************************************
; Example 5 - Open a browser with the AutoIt homepage, insert an
; event script into the head of the document that prevents
; navigation when any link is clicked and log the URL of the
; clicked link to the console
; *******************************************************
;
#include <IE.au3>
$oIE = _IECreate("http://www.autoitscript.com")
$oLinks = _IELinkGetCollection($oIE)
For $oLink in $oLinks
$sLinkId = _IEPropertyGet($oLink, "uniqueid")
_IEHeadInsertEventScript($oIE, $sLinkId, "onclick", "return false;")
ObjEvent($oLink, "_Evt_")
Next
While 1
Sleep(100)
WEnd
Func _Evt_onClick()
Local $o_link = @COM_EventObj
ConsoleWrite($o_link.href & @CRLF)
EndFunc
= = 就在帮助文档里 第一次看见使用@COM_EventObj
学习了 使用前要注册 AutoItX3.dll,详细请参见AutoItX.chm<script language=javascript>
var au3=new ActiveXObject("AutoItX3.Control");
var txt=au3.ClipGet();//获取剪贴板内容
alert(txt);
</script> 回复 7# rolaka
谢谢了,试试看。 使用前要注册 AutoItX3.dll,详细请参见AutoItX.chm
akmm88 发表于 2010-8-12 10:27 http://www.autoitx.com/images/common/back.gif
用obj的话...局限会很大... = = 就在帮助文档里
rolaka 发表于 2010-8-11 22:35 http://www.autoitx.com/images/common/back.gif
可是如果html一刷新就不能用了哦。。。。。。 可是如果html一刷新就不能用了哦。。。。。。
wwwwffff 发表于 2010-8-12 18:29 http://www.autoitx.com/images/common/back.gif
唔 在while里不停的的检查把 牛人年年有,今年特别多
页:
[1]