Jump to content

Recommended Posts

Posted

ive got this. $sssize is just the inetgetsize of the file that is being downloaded.

$currentsspercent = @InetGetBytesRead / $sssize

I have the $currentsspercent reporting back every 4 seconds in a traytip but i get a number like 0.293423423432. i know i need to strip the string but im drawing a blank as to how to turn that number into a percent. help?

  • Developers
Posted

ive got this. $sssize is just the inetgetsize of the file that is being downloaded.

$currentsspercent = @InetGetBytesRead / $sssize

I have the $currentsspercent reporting back every 4 seconds in a traytip but i get a number like 0.293423423432. i know i need to strip the string but im drawing a blank as to how to turn that number into a percent. help?

$currentsspercent = @InetGetBytesRead / $sssize * 100

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

Posted

ugh... i feel soooo stupid

Actually you may want to go with:

$currentsspercent = Round(@InetGetBytesRead / $sssize * 100,0)

to kill your decimal, or another number depending on the precision that you want ",2" for accuracy to the hundreths of a percent etc...

Posted

maybe this could help

While @InetGetActive
        ProgressSet(@InetGetBytesRead / $Size * 100,Round( @InetGetBytesRead / $Size * 100,0) & " %")
        Sleep(250)
    Wend

8)

NEWHeader1.png

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