Search found 83 matches

by MancioDellaVega
18 Mar 2024, 10:48
Forum: Ask for Help (v1)
Topic: Msgbox with one gui costomize... Topic is solved
Replies: 3
Views: 112

Re: Msgbox with one gui costomize... Topic is solved

:crazy: :crazy: :crazy: I was going crazy but at the end i found the solution ...the problem was into one conflict with WinWaitClose and the Gui... so i found this solution with one loop wait...is not so elegant but seems that works.... :lol: :lol: :dance: :dance: q:: Text := "Primo testo sound.`nSe...
by MancioDellaVega
17 Mar 2024, 09:40
Forum: Ask for Help (v1)
Topic: Msgbox with one gui costomize... Topic is solved
Replies: 3
Views: 112

Re: Msgbox with one gui costomize... Topic is solved

If you’d like, you can use a regular MsgBox as a countdown timer (from this post ): Thanks..i have yet something with msgbox that show me the countdown title and elapsed time ...and is this code under.... that show the msgbox at x,y coordinate too... i was interested at that version with gui for ha...
by MancioDellaVega
17 Mar 2024, 06:20
Forum: Ask for Help (v1)
Topic: Msgbox with one gui costomize... Topic is solved
Replies: 3
Views: 112

Msgbox with one gui costomize... Topic is solved

I found this interesting script https://www.autohotkey.com/boards/viewtopic.php?style=7&t=43140#p195802 that simulate one msgbox with use of gui...my goal is to put into the title one message countdown like "seconds left x"...and into the gui one message with the elapsed time like like " elapsed tim...
by MancioDellaVega
14 Mar 2024, 10:01
Forum: General Discussion
Topic: Lokasenna Radial Menu lua Script in Autohotkey??
Replies: 1
Views: 1006

Re: Lokasenna Radial Menu lua Script in Autohotkey??

For someone interested here, there is, one great radial menu solution with Ahk...
viewtopic.php?f=6&t=67803
by MancioDellaVega
25 Feb 2024, 02:59
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567817

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

feiyue Hi bro, I am a newbie to Ahk and enthusiastic about your function and I believe it is a must-have for all users of Ahk. Your function was the first one I saw when I started learning ahk and I have been using it since version 6.0, thank you very much. I use your function with a function of mi...
by MancioDellaVega
25 Feb 2024, 02:32
Forum: Scripts and Functions (v1)
Topic: Radial menu class
Replies: 17
Views: 6843

Re: Radial menu class

Amazing work!!! thanks :clap: :clap: :clap:
by MancioDellaVega
30 Aug 2023, 10:12
Forum: Ask for Help (v1)
Topic: Is it possible to make the cursor move smoothly? Topic is solved
Replies: 10
Views: 7305

Re: Is it possible to make the cursor move smoothly? Topic is solved

I found this function into the forum long time ago...seems that works MoveMouseSlowly(to_x,to_y,In_Seconds) { SingleMoveTime:=31.25 DesiredTime:=In_Seconds*1000 LoopCount:=DesiredTime/SingleMoveTime MouseGetPos, cur_x, cur_y StartX:=cur_x StartY:=cur_y EndX:=to_x EndY:=to_y XDistance:=EndX-StartX YD...
by MancioDellaVega
18 Aug 2023, 01:00
Forum: Ask for Help (v1)
Topic: Auto Hide Chrome Bookmark with use OnMessage
Replies: 0
Views: 182

Auto Hide Chrome Bookmark with use OnMessage

I'm trying to Show/hide Chrome bookmark when mouse is over..something like this.. but i'm going crazy...Someone can fix the code? i think i'm not so far to the solution... #SingleInstance force Global BarraChrome:=1 DetectHiddenWindows, on Gui, -DPIScale -Caption +LastFound +ToolWindow +AlwaysOnTop ...
by MancioDellaVega
13 Dec 2022, 07:05
Forum: Ask for Help (v1)
Topic: Know when a window opens
Replies: 29
Views: 2004

Re: Know when a window opens

@mikeyww Is it possible use that technique to intercept the opening of a new tab in the chrome browser and know what is the title of that tab? Perhaps this might help? Although this helps only in knowing the title of the tab. https://www.autohotkey.com/boards/viewtopic.php?f=74&t=107438 Yep..very g...
by MancioDellaVega
26 Nov 2022, 07:51
Forum: Ask for Help (v1)
Topic: Know when a window opens
Replies: 29
Views: 2004

Re: Know when a window opens

@mikeyww
Is it possible use that technique to intercept the opening of a new tab in the chrome browser
and know what is the title of that tab?
by MancioDellaVega
15 Nov 2022, 16:56
Forum: Scripts and Functions (v1)
Topic: How to get the text cursor / caret position
Replies: 8
Views: 5517

Re: How to get the text cursor / caret position

This looks great. Not what I was looking for, but great none the less. Can definitely use this, except for one thing, I'm getting a blank for FocucedControl. Not sure what's going on. :( try this F1:: ControlGetFocus, FocusedControl,A If (FocusedControl = "Edit1" ) or (FocusedControl = "Edit2"){ Se...
by MancioDellaVega
04 Nov 2022, 10:02
Forum: Bug Reports
Topic: switch bug Topic is solved
Replies: 20
Views: 2458

Re: switch bug Topic is solved

this works too...

Code: Select all


    v := "000"
    Switch 1 
    {
        case (v="000"): Msgbox 3
        case (v="0"): Msgbox 1
        case (v="00000"): Msgbox 5
        case (v="00"): Msgbox 2
        case (v="0000"): Msgbox 4
    }


by MancioDellaVega
16 Sep 2022, 08:15
Forum: Scripts and Functions (v1)
Topic: ScrCmp() : Detects changes in screen by comparing two screenshots
Replies: 23
Views: 11892

Re: ScrCmp() : Detects changes in screen by comparing two screenshots

@SKAN
Great function as always...
Is it possible to turn ON/OFF the region monitoring at the push of a button?
Example.
I press once F1 = monitoring ON
I press again F1 = monitoring OFF
by MancioDellaVega
22 Apr 2022, 06:04
Forum: Tutorials (v1)
Topic: FindText tutorial
Replies: 92
Views: 63743

Re: FindText tutorial

Simply Wonderful.thanks .. :clap: :clap: .
if it were possible to make a video with examples, to put on youtube it would be really top of the top...
by MancioDellaVega
09 Oct 2021, 04:21
Forum: Forum Issues
Topic: Recent Forum Issues - August 2021
Replies: 239
Views: 293432

Re: Recent Forum Issues - August 2021

@tank
Thanks a lot for your work, now here seems all work fine :clap: :clap: :dance: :dance:
by MancioDellaVega
06 Oct 2021, 07:30
Forum: Forum Issues
Topic: Recent Forum Issues - August 2021
Replies: 239
Views: 293432

Re: Recent Forum Issues - August 2021

My situation now is this with Windows 10 Home Ver. 21H1 Build 19043.1266
- Firefox 93.0 no problem
- Chrome 94.0.4606.71 i have only this Warning in the address bar

https://imgbox.com/p2YCipIk
by MancioDellaVega
03 Oct 2021, 00:51
Forum: Forum Issues
Topic: Recent Forum Issues - August 2021
Replies: 239
Views: 293432

Re: Recent Forum Issues - August 2021

is it possible to take off the warning of Chrome??? Here i have the same issue... 😞
by MancioDellaVega
06 Sep 2021, 16:53
Forum: Other Utilities & Resources
Topic: Best, fastest, easiest free place to make a wpage for all my scripts?
Replies: 9
Views: 4699

Re: Best, fastest, easiest free place to make a wpage for all my scripts?

I'm sorry, effectively...with your considerations is not a good place.....
by MancioDellaVega
06 Sep 2021, 15:15
Forum: Suggestions on Documentation Improvements
Topic: Example of switch
Replies: 2
Views: 1681

Re: Example of switch

oh..thanks now is clear...so one example that can confuse us... 😊
by MancioDellaVega
06 Sep 2021, 14:21
Forum: Other Utilities & Resources
Topic: Categorize/Group your YouTube Subscriptions
Replies: 1
Views: 3208

Re: Categorize/Group your YouTube Subscriptions

I must quote pockettube ..it's one must-have for all users of Youtube.

Go to advanced search