私は進行中の進行状況バーがあり、画面の左上隅に移動したいと思っていました。私はx0 y0 w300
を使って位置とサイズを制御しました。AutoHotKey:進行状況バーの位置を移動する方法
私の%progress_bar_percentage%
は更新を停止しました。私は、ポジションとプログレスバーを同時に稼働させることが可能かどうか尋ねたいと思っていますか?
a = %counter%
b = %CaseArrayCount%
progress_bar_percentage := Round(((a/b) * 100), 2)
; Draw the progress bar on the screen
Progress, x0 y0 w300, %progress_bar_percentage%, %progress_bar_percentage%`%, System Processing , Sample APP
参考:https://autohotkey.com/docs/commands/Progress.htm
あなたは私の人生:) +1を救いました。ありがとうございました! – George