Jump to content

Recommended Posts

Posted

I have autoit script like this :

winActivate ("BillReceipt")
ControlClick ( "BillReceipt", "", "[NAME:winviewer]", "right")
Send ( "{ENTER}")
WinWait ("Print")
ControlClick ("Print", "", "[CLASS:Button; INSTANCE:13]")
Winwait ("Save As")
WinActivate ("Save As")
Send ("{TAB 5} {Backspace} ^v {Enter}")

I need Saved successfully msgbox with file name as i saved like Filename.extension (Example = test.pdf is saved successfull)

Please Help

Posted

use msgbox in "if statement", check help file for more info...

if True then 
MsgBox<0,"","Successfully Saved")
else
MsgBox<0,"","Error")
Endif

 

ill get to that... i still need to learn and understand a lot of codes graduated.gif

Correct answer, learn to walk before you take on that marathon.

Posted
14 hours ago, VIP said:

:lmao: =]]

Local $iFileName = "test.pdf"
; Some code here

If (True) Then ; Replace TRUE to your expression!
    MsgBox(Null, "MyApp", $iFileName & " is saved successful !")
Else
    MsgBox(Null, "MyApp", $iFileName & " is saved Error !")
EndIf

sorry spam!

@VIP
Every time my file name is changed/Variable file name/Everytime i want to save file with different name

Posted (edited)

@Nareshm is it just me, or your answers really sound like you are expecting that someone will write you exact script you need so that you dont need to try to make it yourself based on examples?

Edited by kosamja
  • Developers
Posted (edited)
2 hours ago, Nareshm said:

Every time my file name is changed/Variable file name/Everytime i want to save file with different name

@Nareshm,

Ignoring me totally will not help and I will still impose a restriction on your account when you refuse to show some effort and keep on begging for code.
So consider this the last warning.

@everybody else, I do not need to be assisted in telling people to get their act together. ;)

Jos

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

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
×
×
  • Create New...