ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: Text-less progress bar calculator

(1/2) > >>

Ethershade:
Hello, I was looking for a place to post an idea and came across this website. Now, I for one go crazy over having to watch progress bars that do not have a percentage amount displayed, the worst of which being Adobe Encore. Now then, here's my idea: A small program that you can activate VIA a hotkey, when pressed your cursor becomes the crosshair type. Then the user drags the crosshair from the beginning of the progress bar to the end of the progress bar, after that they click on where the progress bar is currently at and it will calculate the percentage and display it. It seems easy enough to calculate the percentage base on the width of the progress bar and the distance between the start and where it is currently at, so I hope this idea can become more then just that.

mouser:
what you say is feasible.. but.. my gosh is it really something you (or anyone) would use??
seems like an awful lot of trouble to go through to get a more acurate calculation then the rough estimate you could make with your eyes, unless you have cerebellar damage and have difficulty measuring distances..

Ethershade:
Can't help it, I go nuts over not being able to see a percentage. Call it my pet peeve.

skrommel:
 :) Try Percentage!

Calculates how far a progressbar has moved, in percentage .
Press F1, then click at the start, inside and at the end of the progressbar.

Skrommel


--- ---;Percentage.ahk
; Calculates how far a progressbar has moved, in percentage
; Press F1, then click at the start, inside and at the end of the progressbar
;Skrommel @ 2009

#SingleInstance,Force
#NoEnv
CoordMode,Mouse,Screen
CoordMode,ToolTip,Screen
Return

F1::
tip=
(
To calculate the percentage, click
  1 - at the start
  2 - inside
  3 - at the end
of the progress bar
)
ToolTip,% tip
Hotkey,~LButton,LBUTTON,On
counter=0
Return


LBUTTON:
counter+=1
MouseGetPos,mx%counter%,my%counter%
ToolTip,%counter%
If counter=3
{
  Sleep,1000
  ToolTip,% Floor((mx2-mx1)/(mx3-mx1)*100) "%",% mx2,% my2
  Hotkey,~LButton,LBUTTON,Off
}
Return

Ordstrin:
I made a GUI app to do this.. but it seems Skrommel beat me to posting...
"Better yet" I can't seem to upload it anywhere. I'll post it here once I manage to find a solution, for those who like GUIs.
Edit:
It seems my problems are fixed... somehow...
Download it from here

Screenshot:
IDEA: Text-less progress bar calculator

Navigation

[0] Message Index

[#] Next page

Go to full version