Search found 55 matches

by kauan014
12 Aug 2021, 21:55
Forum: Ask for Help (v1)
Topic: Controlling android ADB with AHK?
Replies: 1
Views: 333

Controlling android ADB with AHK?

This works: cmd= C:/Android/platform-tools/adb.exe connect 127.0.0.1:7544 ComOBJ := ComObjCreate("WScript.Shell").Exec(cmd) Response := ComOBJ.StdOut.ReadAll() MsgBox %Response% But when i run the adb in shell: cmd= C:/Android/platform-tools/adb.exe -s 127.0.0.1:7544 shell ComOBJ := ComObjCreate("WS...
by kauan014
12 Aug 2021, 13:21
Forum: Ask for Help (v1)
Topic: Can AHK use ADB to operate Android phone directly? Topic is solved
Replies: 7
Views: 1031

Re: Can AHK use ADB to operate Android phone directly? Topic is solved

@teadrinker is possible to do it when theres a adb.exe already running?
i mean, avoid running a new adb for ech command sent.
by kauan014
12 Aug 2021, 12:36
Forum: Ask for Help (v1)
Topic: Can AHK use ADB to operate Android phone directly? Topic is solved
Replies: 7
Views: 1031

Re: Can AHK use ADB to operate Android phone directly? Topic is solved

@teadrinker could you explain me how the function CmdRet works?

I thought it create a new cmd.exe process for each command sent trough it, but i could not see any 'cmd.exe' being created at the task manager.

How does it connect with the adb.exe?
by kauan014
08 Aug 2021, 10:45
Forum: Ask for Help (v1)
Topic: How to differentiate multiple connected process when it return the same parent PID?
Replies: 1
Views: 260

How to differentiate multiple connected process when it return the same parent PID?

Whenever an instance of BlueStacks is opened for the first time, it launches a Bluestacks.exe * that looks like it 'handles' all other futures instances opened: i1.png It then launches BlueStacks.exe and HD-Player.exe for each new instance, where each of them is dependent on each other, if you close...
by kauan014
25 Jul 2021, 19:20
Forum: Ask for Help (v1)
Topic: Script keep loading forever still clicked
Replies: 2
Views: 208

Script keep loading forever still clicked

When i run a script my mouse icon change to this thing: pic (2).png And keep on it forever, till I click anywhere, then the script is loaded instantly. I can't post the script here because it's too huge, it's just a GUI with pictures on it and a Class that handles these pictures. Some things I have ...
by kauan014
19 Jul 2021, 04:26
Forum: Ask for Help (v1)
Topic: Requesting help on a object script to find equal keys
Replies: 5
Views: 291

Re: Requesting help on a object script to find equal keys

Thank you @swagfag , will help me a lot, one last question, how do I split the final obj in another’s based on value of type?
I mean, one obj containing only rect, other buttons, other picture, and then sort each of them based on the value of match?
by kauan014
18 Jul 2021, 19:06
Forum: Ask for Help (v1)
Topic: Requesting help on a object script to find equal keys
Replies: 5
Views: 291

Requesting help on a object script to find equal keys

MyOBJ := {} MyOBJ.Push( {Type: "Rect", Text: "First", Width: 20, Height: 40, Match: 0} ) ;1 MyOBJ.Push( {Type: "Rect", Text: "Second", Width: 33, Height: 12, Match: 0} ) ;2 MyOBJ.Push( {Type: "Button", Text: "Third", Width: 62, Height: 32, Match: 0} ) ;3 MyOBJ.Push( {Type: "Picture", Text: "First",...
by kauan014
16 Jul 2021, 06:24
Forum: Ask for Help (v1)
Topic: How to differentiate a picture from a text control? Topic is solved
Replies: 4
Views: 301

Re: How to differentiate a picture from a text control? Topic is solved

There isn't an option instead of manually adding each picture control to an array?
by kauan014
15 Jul 2021, 11:41
Forum: Ask for Help (v1)
Topic: How to differentiate a picture from a text control? Topic is solved
Replies: 4
Views: 301

How to differentiate a picture from a text control? Topic is solved

OnMessage(0x200, "WMMOUSEMOVE") ; PICTURE Loop, 4 { if (A_Index = 1) Gui, Add, Picture, x10 y20 w40 h20, bitmap.png else Gui, Add, Picture, x+10 y20 w40 h20, bitmap.png } ; TEXT Loop, 4 { if (A_Index = 1) Gui, Add, Text, x10 y70 w40 h20, Text %A_Index% else Gui, Add, Text, x+10 y70 w40 h20, Text %A...
by kauan014
11 Jul 2021, 20:56
Forum: Scripts and Functions (v1)
Topic: [CLASS] CtlColors - color your controls (2017-10-30)
Replies: 67
Views: 39430

Re: [CLASS] CtlColors - color your controls (2017-10-30)

@just me I was searching for your script and i see your imagebutton lib, i wonder if in any of your scripts do you have an example of changing the shape of an edit control to rounded borders?
by kauan014
10 Jul 2021, 19:21
Forum: Scripts and Functions (v1)
Topic: [CLASS] CtlColors - color your controls (2017-10-30)
Replies: 67
Views: 39430

Re: [CLASS] CtlColors - color your controls (2017-10-30)

@just me is possible to change the shape of this brush? maybe create it with rounded border?
by kauan014
06 Jul 2021, 20:05
Forum: Scripts and Functions (v1)
Topic: ChooseColors() : Color selection UI
Replies: 35
Views: 8272

Re: ChooseColors() : Color selection UI

SKAN any news regarding the "hand icon" thing?
by kauan014
02 Jul 2021, 21:25
Forum: Scripts and Functions (v1)
Topic: ChooseColors() : Color selection UI
Replies: 35
Views: 8272

Re: ChooseColors() : Color selection UI

SKAN is possible to enable the "hand icon" whenever you move the mouse over the scrollable area like the gradient and not only when you click hold?
by kauan014
02 Jul 2021, 19:20
Forum: Scripts and Functions (v1)
Topic: [CLASS] CtlColors - color your controls (2017-10-30)
Replies: 67
Views: 39430

Re: [CLASS] CtlColors - color your controls (2017-10-30)

Code: Select all

Gui, Add, Edit, w100 h100 hWndEdit, Testing Text
CtlColors.Attach(Edit, "Trans", "Aqua")
Gui, Show,  w300 h200, TEST
Return
@just me
Am i doing something wrong or the option Trans is not working?
Im using the current source in your github.
Spoiler
by kauan014
30 Jun 2021, 23:49
Forum: Ask for Help (v1)
Topic: Get control golabel
Replies: 3
Views: 219

Re: Get control golabel

Because i will append a label to the control in case it doesn't have one at x condition.
by kauan014
30 Jun 2021, 23:29
Forum: Ask for Help (v1)
Topic: Get control golabel
Replies: 3
Views: 219

Get control golabel

Is possible to check if a given control has a gLabel?

I mean:

Code: Select all


Gui, Add, Text, vTxtA gSomeLabeL, TextA
Gui, Add, Text, vTxtB, TextB     
Gui,Show

Return

F2::
GuiControlGet, HasLabel, ??, TxtA
GuiControlGet, HasLabel, ??, TxtB
by kauan014
18 May 2021, 11:43
Forum: Ask for Help (v1)
Topic: How to display emojis original colors?
Replies: 7
Views: 1274

How to display emojis original colors?

Code: Select all

gui,add,text,x0 y0,✔❤😁😁😁😂🤣😎🎉
gui,add,text,x0 y+10 cred,✔❤😁😁😁😂🤣😎🎉
gui,show,h150,
They are shown without color.
I can change the color using ccolor but i would like to show their original color, as it show here on the forum ^

image.png
image.png (12.32 KiB) Viewed 1274 times
by kauan014
16 May 2021, 09:15
Forum: Ask for Help (v1)
Topic: How to keep the button on taskbar after hiding her window?
Replies: 1
Views: 124

How to keep the button on taskbar after hiding her window?

SplashImage does not create a button in the taskbar, it just show the image on the screen: SplashImage , pp.png , , Test, 123, Title But if you use it with the option T SplashImage , pp.png , T, Test, 123, Title It does create a button in the taskbar: image.png Would like to ask if someone know how ...
by kauan014
09 May 2021, 17:38
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 595787

Re: FindText - Capture screen image into text and then find it Topic is solved

I learned how to use the multi-color mode, thanks JoinText --> if the value is 1, Join all Text for combination lookup What the difference between JoinText and just doing: Text := "...." Text.="..." Text.="..." Text.="..." Jointext will search for all the text at same time and the second option will...
by kauan014
08 May 2021, 09:36
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1092
Views: 595787

Re: FindText - Capture screen image into text and then find it Topic is solved

Matched perfectly I'm each time more surprised with FindText :shock: Both functions will help a lot! Last question I promise :? In this samples i'm trying to find the image and not a x amount of similar sequential pixels, there's a high variation of brightness in the image and the image keeps moving...

Go to advanced search