Jump to content

Recommended Posts

Posted

i want to ask is there a way to make an autoit window show the percentage completion like the one you see when you download a game example 1 of 6 99% completed 

and  also i want to run a report but the same .exe program is running any way to stop the .exe file using auto it and run the same .exe afterwords

Posted

Dont do that friend. People will answer when they can.

What you ask is very generic, it may be possible, depends a lot on the target application.

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

Posted

@careca

sorry about that i was panicking for various reasons .

@FrancescoDiMuro 

i want to trace the progress of my auto it program  so that it shows something like 1 of 20  65% or 1 of 1 30% 

depending on what i choose.

it is a very long program there are some variables that would need replacing if you want to run 

Baan Reports.au3

Posted

@yasha
You could do something like this (with a little animation either):

Global $intNumberOfProcess = 3, _
       $strDots = "."

ProgressOn("", "", "", Default, Default, $DLG_MOVEABLE)
For $i = 1 To $intNumberOfProcess Step 1
    For $j = 10 To 100 Step 10
        ProgressSet($j, "Process " & $i & " of " & $intNumberOfProcess & " - " & $j & "% completed.", _
                    "Installing Software" & $strDots)
        $strDots &= "."
        If StringLen($strDots) = 4 Then $strDots = ""
        Sleep(1000)
    Next
Next

ProgressOff()

:)

Click here to see my signature:

Spoiler

ALWAYS GOOD TO READ:

 

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...