Jump to content

fchelp

Members
  • Posts

    12
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

fchelp's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thanks! i got it in the same second you wrote it
  2. Got you halfway. I was able to get the data like this $ttest = AutoItSetOption( "WinTitleMatchMode" ) ConsoleWrite($ttest & @CRLF ) But i still don't understand how your script line works. Is there a help file i could read that explains how to output the result of a commend in Consolewrite without setting it first as a variable? (as it seems this is what you did, i just don't understand how it works) NVM disregard that, i figured that out, it's ConsoleWrite( AutoItSetOption( "WinTitleMatchMode" ) & @CRLF ) Now why did you need to make that long line of code? Thanks so much for your patience!
  3. Thanks! But could you please explain the code you wrote? i'm trying to learn, and i'm wondering why doesn't this work? (i tested it) ConsoleWrite('AutoItSetOption( "WinTitleMatchMode" )' & @CRLF )
  4. Hi, I'm trying to get the value of WinTitleMatchMode so i checked the help file, and it says "If the param is not provided, then the function just returns the value already assigned to the option." So i'm running this line in SciTE AutoItSetOption( "WinTitleMatchMode" ) And am checking the output, but the only output i'm getting is What am i doing wrong? I'm trying to set it that it should do exact match on titles, but i want to see first what is the current setting. Thanks in advance!
  5. Thanks so so much!! this works! Is there a way to read the value of a variable? (i want to compare the Handle and Control ID the script finds and the spy tool find are the same) Thanks
  6. I just tried this WinActivate ("[CLASS:#32770]", "") WinWait("[CLASS:#32770]", "") ControlClick ( "[CLASS:#32770]", "", "[ID:254]" ) And it didn't work
  7. I'm going to try using ControlClick again (i tried it before and it didn't work, so i deleted the code, now i have to rewrite it) Thanks!
  8. Thanks but my issue is not about maximizing the window, it's about running a keyboard shortcut in the program. WinActivate ("[CLASS:#32770]", "") finds the correct program, so no worries there (i see that LiveClient become the active window), my issue is that for some reason the shortcut doesn't run in the program what could be the reason? Thanks
  9. Thanks! but it's doesn't work, it doesn't even pause the script to wait for the program to be active, it just quits. What Should i set the AutoItSetOption? Sorry but how do i use this code? WinSetState ( "title", "text", flag ) Thank in advance
  10. I'm selecting the the header of the program. Thanks!
  11. Thanks so much for the quick help Vivotek Live Client. (it's a CCTV camera viewer) It's not a popup, and even more the program has a button and a keyboard shortcut to make it full screen.
  12. Hi, i'm new to autoit and am learning to play around with it. I'm trying to make a script that would automatically make program full screen, the keyboard shortcut from the program is CTRL + f, so i wrote this script WinActivate("[CLASS:#32770]", "") Send("^f") WinActivate works perfect, it activates the correct program, but send ctrl+f doesn't work, nothing happens. Thanks in advance.
×
×
  • Create New...