Jump to content

Recommended Posts

Posted

Is there a way to change my GUIs title when something happens?

My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
Posted

Yeah but I'm not sure what the win title is going to be. It's going to be changed very often throughout the script and I don't think WinSetTitle works with handles

My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
Posted

Did you try?

Opt("WinTitleMatchMode", 4)

$h = GuiCreate("Title One.")
GuiSetState()

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Two..")

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Three...")

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Four....")

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Five.....")
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
  • Administrators
Posted

  CyberSlug said:

Did you try?

Opt("WinTitleMatchMode", 4)

$h = GuiCreate("Title One.")
GuiSetState()

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Two..")

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Three...")

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Four....")

sleep(1000)
WinSetTitle("handle=" & $h, "", "Title Five.....")

Not required, this is easier:

$h = GuiCreate("Title One.")
GuiSetState()

sleep(1000)
WinSetTitle($h, "", "Title Two..")

Posted

Ah, see I didn't know WinSetTitle worked with handles. Thanks both of you

My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
  • Administrators
Posted

  the_lord_mephy said:

Ah, see I didn't know WinSetTitle worked with handles. Thanks both of you

Any function that works with "title", "text" works with handles. Totally undocumented but when I upgraded the variants to support handles this was a nice side effect. In fact the "handle=" is completely redundant now - it stays only because I need it for AutoItX.
Posted

Ooh, that's very helpful. Thanks Jon

My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
  • 5 years later...
Posted

This Thread is 6 years old now. But this issue is STILL totally undocumented. I'm using autoit for so many years, and I'm a little frustrated that this feature has been there and is ... 6 years old.

please can you put it to the next version's help file?

thanks :blink:

Posted

  On 7/4/2010 at 4:17 PM, 'loukaniko said:

This Thread is 6 years old now. But this issue is STILL totally undocumented. I'm using autoit for so many years, and I'm a little frustrated that this feature has been there and is ... 6 years old.

please can you put it to the next version's help file?

thanks :blink:

Look at "Window Titles and Text (Advanced)" in the help file.

George

  Reveal hidden contents
Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

  • Moderators
Posted

loukaniko,

From the Help file - <Using AutoIt - Window Titles and Text (Advanced)>: :blink:

  Quote

Window Handles / HWNDs

The variant datatype in AutoIt natively supports window handles (HWNDs). A window handle is a special value that windows assigns to a window each time it is created. When you have a handle you may use it in place of the title parameter in any of the function calls that use the title/text convention. The advantage of using window handles is that if you have multiple copies of an application open - which have the same title/text - you can uniquely identify them when using handles. When you use a window handle for the title parameter then the text parameter is completely ignored.

Various functions such as WinGetHandle, WinList and GUICreate return these handles. It is important to note that a window handle is not classed as a number or string - it is its own special type.

Note: Window handles will work no matter what WinTitleMatchMode is currently in use.

Example

$handle = WinGetHandle("Untitled - Notepad", "")

WinClose($handle)

Neck retract button = Pressed

could well be the next thing on your agenda. ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...