Search found 15 matches

by xcracked
09 Jun 2019, 07:40
Forum: Ask for Help (v1)
Topic: How to Communicate with a flash in webpage?
Replies: 1
Views: 561

Re: How to Communicate with a flash in webpage?

Any Ideals will be good
by xcracked
24 May 2019, 09:12
Forum: Ask for Help (v1)
Topic: How to Communicate with a flash in webpage?
Replies: 1
Views: 561

How to Communicate with a flash in webpage?

The is a flash (swf file) in a webpage , and some buttons in flash. Is there any way to Communicate with the flash? Want to control the flash with AHK.
by xcracked
13 Apr 2019, 00:53
Forum: Ask for Help (v1)
Topic: Cann't access to frame at different domain when automate IE Topic is solved
Replies: 4
Views: 1299

Re: Cann't access to frame at different domain when automate IE Topic is solved

Thanks,tank. Your code works nice.I have three frames at different domains,this is my code: rightFrameDoc := IHTMLWindow2_from_IWebDOCUMENT(objIE.document.frames["rightFrame"].document) mainFrameDoc := IHTMLWindow2_from_IWebDOCUMENT(rightFrameDoc.frames["mainFrame"].document) num := mainFrameDoc.doc...
by xcracked
12 Apr 2019, 09:30
Forum: Ask for Help (v1)
Topic: Cann't access to frame at different domain when automate IE Topic is solved
Replies: 4
Views: 1299

Re: Cann't access to frame at different domain when automate IE Topic is solved

you have to query for the document object from the documentElement IHTMLWindow2_from_IWebDOCUMENT( IWebDOCUMENT ) { static IID_IHTMLWindow2 := "{332C4427-26CB-11D0-B483-00C04FD90119}" ; IID_IHTMLWindow2 return ComObj(9,ComObjQuery( IWebDOCUMENT, IID_IHTMLWindow2, IID_IHTMLWindow2),1) } frameDoc := ...
by xcracked
11 Apr 2019, 10:36
Forum: Ask for Help (v1)
Topic: Cann't access to frame at different domain when automate IE Topic is solved
Replies: 4
Views: 1299

Cann't access to frame at different domain when automate IE Topic is solved

Hi, Everybody These days, I have been learnt to Automate Internet Explorer. But, When I comes to get the element in frame/iframes at different domains, errors come out:ACCESSDENIED.And my method is: objIE := WBGET() objIE.document.frames["xxxx"].frames["xxxx"].document.getElementById........ this wo...
by xcracked
17 Dec 2018, 04:30
Forum: 请求帮助
Topic: 请问如何在DropDownList或者ComboBox中嵌入一个TreeView
Replies: 1
Views: 3186

请问如何在DropDownList或者ComboBox中嵌入一个TreeView

首先,非常抱歉频繁的发帖提问,其次十分感谢tmplinshi详细的解答 :bravo: 。那么今天的问题是:请问如何在DropDownList或者ComboBox中嵌入一个TreeView,或者把TreeView嵌入其他的控件中,感谢!
by xcracked
11 Dec 2018, 01:48
Forum: 请求帮助
Topic: 请问,ListView的单元格内容中有"`n"换行符,为什么输出时内容还是在一行显示? Topic is solved
Replies: 4
Views: 10474

Re: 请问,ListView的单元格内容中有"`n"换行符,为什么输出时内容还是在一行显示? Topic is solved

EDIT : solved from user 'just me' 20181210 20:15 UTC 谢谢你,更大的ico的想法? ( bigger ICO without library ) https://autohotkey.com/boards/viewtopic.php?f=9&t=59791 https://autohotkey.com/boards/viewtopic.php?f=6&t=1256 just me LV_EX LIB solved from user 'just me' : Listview: added ICO with defined size with...
by xcracked
11 Dec 2018, 01:41
Forum: 请求帮助
Topic: 请问,ListView的单元格内容中有"`n"换行符,为什么输出时内容还是在一行显示? Topic is solved
Replies: 4
Views: 10474

Re: 请问,ListView的单元格内容中有"`n"换行符,为什么输出时内容还是在一行显示? Topic is solved

可以这样: Gui, Add, ListView, w600 h300 Grid, col1 lvCtrl_SetRowHeight(50) LV_Add("", "line1`nline2") Gui, Show Return GuiClose: ExitApp lvCtrl_SetRowHeight(Height) { LV_SetImageList( DllCall( "ImageList_Create", Int,2, Int, Height, Int,0x18, Int,1, Int,1 ), 1 ) } 谢谢,这代码可以在Win7上运行,但是在XP上不行,看了一下MSDN,Ima...
by xcracked
09 Dec 2018, 06:37
Forum: 请求帮助
Topic: 请问,ListView的单元格内容中有"`n"换行符,为什么输出时内容还是在一行显示? Topic is solved
Replies: 4
Views: 10474

请问,ListView的单元格内容中有"`n"换行符,为什么输出时内容还是在一行显示? Topic is solved

我想要ListView的一个单元格输出包含换行符的内容,如:
varLv := a . "`n" . b 用MsgBox输出时两个变量的内容就在两行,把变量放到ListView的某一个单元格中还是在一行显示,请问该怎么办?谢谢!
by xcracked
26 Nov 2018, 21:19
Forum: 请求帮助
Topic: 如何把用正则从网页匹配到字符串转换为包含数组的对象? Topic is solved
Replies: 2
Views: 9848

如何把用正则从网页匹配到字符串转换为包含数组的对象? Topic is solved

请问:我用WinHttp.Request的GET方法获取了一个网页内容,里面有一个标签的内容有我想要的信息,格式为[{"keya":valuea,"keyb":valueb},{"keyc":valuec,"keyd":valued},{"keye":valuee,"keyf":valuef},{"keyg":valueg,"keyh":valueh}]。现在我用正则把它匹配出来了,但是是一个字符串,不能用AHK访问数组对象的方法来访问内容,有什么办法能把它转换为可以直接访问的对象吗?或者可以直接从网页直接获取的就是可以访问的对象?谢谢!
by xcracked
14 Nov 2018, 00:45
Forum: Scripts and Functions (v1)
Topic: Internet Explorer Element Spy (alternative to iWB2 Learner)
Replies: 67
Views: 42481

Re: Internet Explorer Element Spy (alternative to iWB2 Learner)

Hi,everyone! Thanks for the effort , I want to know how to make this script work on WinXP and IE8
by xcracked
14 Oct 2018, 09:02
Forum: 请求帮助
Topic: 请问如何改变GUI的edit的内容显示为星号,但实际内容不变。
Replies: 1
Views: 2369

请问如何改变GUI的edit的内容显示为星号,但实际内容不变。

我做了一个登陆界面,有一个输入密码的地方,怎么让用户输入的内容瞬间变为星号或其他内容,而不是名文显示,但实际提交的内容还是用户输入的内容,就像网站或其他软件那样。
by xcracked
30 Sep 2018, 00:08
Forum: 教程资料
Topic: 网页自动化初级教程
Replies: 13
Views: 68474

Re: 网页自动化初级教程

linpinger的教程看不到了,打不开了,有什么办法看到吗?

Go to advanced search