Search found 112 matches

by MonuKashyap
25 Dec 2023, 09:18
Forum: AutoHotkey_H
Topic: Script not working when compiled with AHK_H
Replies: 0
Views: 1046

Script not working when compiled with AHK_H

Hello everyones,, my script uses chromedriver with Rufaydium and works perfect on normal or with normally compiled (with/without mpress), but, when compiled with AHK_H one part gets default to its own Example: Chrome := new Rufaydium() Chrome.capabilities.setUserProfile("ChromeProfile", "C:\MyFolder...
by MonuKashyap
05 Oct 2023, 00:12
Forum: Ask for Help (v2)
Topic: How to start Google chrome with current flag settings in Rufaydium
Replies: 0
Views: 116

How to start Google chrome with current flag settings in Rufaydium

Hello everyone,,

I am starting google chrome with rufaydium new session but i found all flags disabled,
whereas I have already setted a flag enabled.
Can anyone pls help me to start chrome with desired flag enabled,.

Thanks,,,
by MonuKashyap
05 Oct 2023, 00:06
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 610
Views: 124734

Re: Rufaydium WebDriver (no selenium/websocket)

Examples have been moved to Github https://github.com/Xeo786/Rufaydium-Webdriver/blob/main/README.md Hello friend,, I would like to know that how to import current flag setting in new rufaydium session? because i have noticed that new chrome rufaydium session starts with all flags settings disabled...
by MonuKashyap
22 Dec 2022, 08:53
Forum: Ask for Help (v1)
Topic: Singleinstance to Label
Replies: 3
Views: 245

Re: Singleinstance to Label

boiler wrote:
22 Dec 2022, 08:48
What do you mean by that? What is the label supposed to accomplish?
for example :

Code: Select all

loop
{
;;some code
tooltip % a_index
If (Reset)
break
}
Return

Label:
Reset=1
Msgbox No need to restart script`nprocess has been reseted.
Return
something like this instead of #singleinstance directive.
by MonuKashyap
22 Dec 2022, 08:44
Forum: Ask for Help (v1)
Topic: Singleinstance to Label
Replies: 3
Views: 245

Singleinstance to Label

is this possible to create Label instead of #Singleinstance (force|ignore|off)..?
any suggetion pls..
by MonuKashyap
30 Aug 2022, 00:24
Forum: Ask for Help (v1)
Topic: Protect AHK source code [Advanced] Topic is solved
Replies: 4
Views: 1132

Re: Protect AHK source code [Advanced] Topic is solved

boiler wrote:
28 Aug 2022, 23:26
I suggest compiling AHK_H with a password that you select as described here.
I Got this error, what's the solution pls...
by MonuKashyap
29 Aug 2022, 08:27
Forum: Ask for Help (v1)
Topic: Protect AHK source code [Advanced] Topic is solved
Replies: 4
Views: 1132

Re: Protect AHK source code [Advanced] Topic is solved

boiler wrote:
28 Aug 2022, 23:26
I suggest compiling AHK_H with a password that you select as described here.
Thank you boiler,
Ill try
by MonuKashyap
28 Aug 2022, 23:14
Forum: Ask for Help (v1)
Topic: Protect AHK source code [Advanced] Topic is solved
Replies: 4
Views: 1132

Protect AHK source code [Advanced] Topic is solved

Hello Superusers!! I need a little help,, I want to "Strongly Protect" the source code of my ahk script, and, for that I found a simple way is compile the script using MPRESS But, a person cracked this! Now i have no idea, that how to protect my source code with very strong method. Any superusers pl...
by MonuKashyap
21 Jun 2022, 22:39
Forum: Ask for Help (v1)
Topic: ActiveX shows different than original style Topic is solved
Replies: 3
Views: 396

Re: ActiveX shows different than original style Topic is solved

Others will know more, but perhaps the positioning is ignored; easily fixed. <html></body> Phone No : 022-572394<br /> Email : abc@testmail.com<br /> D.O.B. : 01-01-1990 </body></html> A simple demonstration of my comment: <html></body> <p style="position:fixed; top:10px; left:100px">Phone No : 022...
by MonuKashyap
21 Jun 2022, 20:42
Forum: Ask for Help (v1)
Topic: ActiveX shows different than original style Topic is solved
Replies: 3
Views: 396

ActiveX shows different than original style Topic is solved

I have a simple code with activex object, that simply navigate to my local html file to show the data and print purposes. which is : Gui, Add, ActiveX, w820 h570 vicp, Shell.Explorer Gui, show,, icp.Navigate(a_scriptdir "\icp - copy.html") Return But the problem with that is, the activex showing the...
by MonuKashyap
15 Jun 2022, 19:08
Forum: Ask for Help (v1)
Topic: Getting matching title name of all tabs in Microsoft Edge Topic is solved
Replies: 2
Views: 616

Re: Getting matching title name of all tabs in Microsoft Edge Topic is solved

I found my answer in this code by mikeyww
Thank you @mikeyww

Code: Select all

WinGet, edge, List, ahk_exe msedge.exe
Loop, %edge% {
 WinGetTitle, ttitle, % "ahk_id" edge%A_Index%
 edgeList .= (edgeList ? "`n" : "") A_Index ". " ttitle
}
MsgBox, 64, Edge titles, %edgeList%
by MonuKashyap
15 Jun 2022, 19:06
Forum: Ask for Help (v1)
Topic: Getting matching title name of all tabs in internet explorer Topic is solved
Replies: 11
Views: 1350

Re: Getting matching title name of all tabs in internet explorer Topic is solved

mikeyww wrote:
15 Jun 2022, 18:50

Code: Select all

WinGet, edge, List, ahk_exe msedge.exe
Loop, %edge% {
 WinGetTitle, ttitle, % "ahk_id" edge%A_Index%
 edgeList .= (edgeList ? "`n" : "") A_Index ". " ttitle
}
MsgBox, 64, Edge titles, %edgeList%
oh wow!! its simply great,
and, also you are too fast and responsive
Thank You mikeyww :bravo:
by MonuKashyap
15 Jun 2022, 18:38
Forum: Ask for Help (v1)
Topic: Getting matching title name of all tabs in Microsoft Edge Topic is solved
Replies: 2
Views: 616

Getting matching title name of all tabs in Microsoft Edge Topic is solved

How to get all matching title names from all active tabs (or seperate/private window) in Microsoft Edge? :roll: For example, I have 4 active tabs and/or seperate window such as private window, of Microsoft Edge and, the title as follows: 1. This is mytitle2.co.in 2. This Is MyTitle.com 3. Its Mytitl...
by MonuKashyap
15 Jun 2022, 18:34
Forum: Ask for Help (v1)
Topic: Getting matching title name of all tabs in internet explorer Topic is solved
Replies: 11
Views: 1350

Re: Getting matching title name of all tabs in internet explorer Topic is solved

IElist = WinGet, ie, List, ahk_class IEFrame ahk_exe iexplore.exe Loop, %ie% { WinGetTitle, ttitle, % "ahk_id " ie%A_Index% IElist .= (IElist ? "`n" : "") A_Index ". " ttitle } MsgBox, 64, IE titles, %IElist% Hello mikeyww,, as you may know, the Internet Explorer is retiring, so I need to shift the...
by MonuKashyap
21 Jan 2022, 08:04
Forum: Ask for Help (v1)
Topic: How to convert number to string Topic is solved
Replies: 4
Views: 2012

Re: How to convert number to string Topic is solved

No matter what the contents of your variable, this is incorrect syntax: wb.document.GetElementbyId(Data).value := "%num%" Generally, it would be: wb.document.GetElementbyId(Data).value := num I'm not sure why the above wouldn't work as is, but if you really need the contents to be seen as a string,...
by MonuKashyap
20 Jan 2022, 23:15
Forum: Ask for Help (v1)
Topic: How to convert number to string Topic is solved
Replies: 4
Views: 2012

Re: How to convert number to string Topic is solved

No matter what the contents of your variable, this is incorrect syntax: wb.document.GetElementbyId(Data).value := "%num%" Generally, it would be: wb.document.GetElementbyId(Data).value := num I'm not sure why the above wouldn't work as is, but if you really need the contents to be seen as a string,...
by MonuKashyap
20 Jan 2022, 22:43
Forum: Ask for Help (v1)
Topic: How to convert number to string Topic is solved
Replies: 4
Views: 2012

How to convert number to string Topic is solved

for ex num:=123 ;here this is a number format and how do i get this in string format To understand better, here is the main problem [Not working] wb.document.GetElementbyId(Data).value:=123 [Working] wb.document.GetElementbyId(Data).value:="123" My problem is : wb.document.GetElementbyId(Data).value...
by MonuKashyap
11 Jan 2022, 02:43
Forum: Ask for Help (v1)
Topic: screenshot of a window
Replies: 1
Views: 244

screenshot of a window

Hello everyone!!
I am working with Internet explorer as COM with the help of autohotkey commands, it automates some webpages but now i need to take screenshot of some webpages, is this possible .?
help pls,,
by MonuKashyap
19 Dec 2021, 08:59
Forum: Ask for Help (v1)
Topic: Getting matching title name of all tabs in internet explorer Topic is solved
Replies: 11
Views: 1350

Re: Getting matching title name of all tabs in internet explorer Topic is solved

IElist = WinGet, ie, List, ahk_class IEFrame ahk_exe iexplore.exe Loop, %ie% { WinGetTitle, ttitle, % "ahk_id " ie%A_Index% IElist .= (IElist ? "`n" : "") A_Index ". " ttitle } MsgBox, 64, IE titles, %IElist% Oh My God, Mickey , you are really a SuperActive member at this forum and your solution is...
by MonuKashyap
19 Dec 2021, 08:49
Forum: Ask for Help (v1)
Topic: Getting matching title name of all tabs in internet explorer Topic is solved
Replies: 11
Views: 1350

Getting matching title name of all tabs in internet explorer Topic is solved

How to get all matching title names from all active tabs (or seperate/private window) in internet explorer? :roll: For example, I have 3 active tabs and/or seperate window such as private window, of internet explorer and, the title as follows: 1. This is mytitle2.co.in 2. This Is MyTitle.com 3. Its ...

Go to advanced search