Jump to content

[Solved] WinMove probleme -.-


caramen
 Share

Recommended Posts

I am trying to automate an ADWcleaner Clean but i can even move the windows and even push the "Accepte"

 

My code .......... shame on me.  And OFCOURSE i tryed a lot of thing to try that... like change the Opt or change the Variable calculation but i cant get it move or push the button.

 

Strange thing: WinActivate is working so why the rest is not ! ???????

WinActivate ($handle)

WinActivate ("Conditions d'utilisation")

 

I am feeling noob. or wait... i am a noob. :D what does i am missing.

*

#include <Misc.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Array.au3>
#include <File.au3>
#include <Word.au3>
#include <FileConstants.au3>
#include <MsgBoxConstants.au3>
#include <ColorConstantS.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <ListViewConstants.au3>
#include <GuiListView.au3>
#include <ProgressConstants.au3>
#include <StaticConstants.au3>
#include <GDIPlus.au3>
#include <WinAPI.au3>
#include <_IsUACAdmin.au3>

Opt("WinTitleMatchMode", 2)
Opt("WinTextMatchMode", 2)

$handle = 0

MsgBox ( $MB_SYSTEMMODAL , "test", "test ="&$handle)

$handle = WinWait("Conditions d'utilisation")

MsgBox ( $MB_SYSTEMMODAL , "test", "test ="&$handle)

WinActivate ("Conditions d'utilisation")

MsgBox ( $MB_SYSTEMMODAL , "test", "test ="&$handle)

WinMove ($handle,"Conditions d'utilisation",0,0)

ControlClick($handle, "J'accepte", "Button1")
ControlClick($handle, "", "Button1")
ControlClick($handle, "", "",3)

 

Edited by caramen

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

I know it look so simple but wont work

 

#include <Misc.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Array.au3>
#include <File.au3>
#include <Word.au3>
#include <FileConstants.au3>
#include <MsgBoxConstants.au3>
#include <ColorConstantS.au3>
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <ListViewConstants.au3>
#include <GuiListView.au3>
#include <ProgressConstants.au3>
#include <StaticConstants.au3>
#include <GDIPlus.au3>
#include <WinAPI.au3>
#include <_IsUACAdmin.au3>

Opt("WinTitleMatchMode", 2)
Opt("WinTextMatchMode", 2)

$handle = 0

MsgBox ( $MB_SYSTEMMODAL , "test", "test ="&$handle)

$handle = WinWait("Conditions d'utilisation")

MsgBox ( $MB_SYSTEMMODAL , "test", &$handle "handle")

WinActivate ("Conditions d'utilisation")

MsgBox ( $MB_SYSTEMMODAL , "test", "test winactivate "&$handle)

WinMove ($handle,"",0,0)

WinMove ("Conditions d'utilisation",0,0)

Ijust want to push accept button but my boss prefer to get the windows always at same position if embeded systeme are used.

Edited by caramen

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

Working.

Thank.

Btw look like you k,ow good the #requireadmin OPT

i noticed yesteday that when i add this option to one of my other script i dont got debug info anymore is that normal ?

Thank in advance.

My video tutorials : ( In construction )  || My Discord : https://discord.gg/S9AnwHw

How to Ask Help ||  UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote

Spoiler

 Water's UDFs:
Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
PowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & Support
Excel - Example Scripts - Wiki
Word - Wiki
 
Tutorials:

ADO - Wiki

 

Link to comment
Share on other sites

Yes, normal, console is out.

Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

On 12/29/2016 at 7:52 PM, InunoTaishou said:

Didn't realize adwcleaner was a program that ran as admin. If you're interacting with any window that has admin privileges your script has to run as admin as well.

#RequireAdmin

AutoItSetOption("WinTitleMatchMode", -2)

WinMove("adwcleaner", "", 0, 0)

 

You know, I was wondering why some of my windows seemed to be unmovable.. Now i know.. Thanks.

 

Spoiler

WinSizer 2.1 (01/04/2017) - Download - [ Windows Layout Manager ]
Folder+Program (12/23/2016) - Download - [ USB Shortcut Creator ]

 

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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