diff --git a/target/docs/lib/A_MaxHotkeysPerInterval.htm b/target/docs/lib/A_MaxHotkeysPerInterval.htm index fe62b89e2..1c3a0a1a3 100644 --- a/target/docs/lib/A_MaxHotkeysPerInterval.htm +++ b/target/docs/lib/A_MaxHotkeysPerInterval.htm @@ -1,8 +1,8 @@ -A_MaxHotkeysPerInterval / A_HotkeyInterval - Syntax & Usage | AutoHotkey v2 - +A_MaxHotkeysPerInterval - 構文と使用法|AutoHotkey v2 + @@ -13,10 +13,10 @@

A_MaxHotkeysPerInterval / A_HotkeyInterval

-

A_MaxHotkeysPerInterval and A_HotkeyInterval are built-in variables that control the rate of hotkey activations beyond which a warning dialog will be displayed.

+

A_MaxHotkeysPerIntervalA_HotkeyInterval は、ホットキー の一定時間の起動回数を制御する 組み込み変数です。 このレートを超えると警告ダイアログが表示されます。

A_MaxHotkeysPerInterval can be used to get or set an integer representing the maximum number of hotkeys that can be pressed within the interval without triggering a warning dialog.

A_HotkeyInterval can be used to get or set an integer representing the length of the interval in milliseconds.

-

The default settings are 70 (ms) for A_MaxHotkeysPerInterval and 2000 (ms) for A_HotkeyInterval.

+

初期設定では、A_MaxHotkeysPerInterval が70 (ms) で、A_HotkeyIntervalが2000 (ms)です。.

備考

These built-in variables should usually be assigned values when the script starts (if the default settings are not suitable), but the script can get or set their values at any time.

@@ -27,11 +27,11 @@

備考

  • キーリピート率に対してリミットが低すぎる場合、またはシステムが高負荷の場合にキーリピートします。
  • キーボードやマウスのハードウェアで、一般的なキーリピート速度よりも高速に入力イベントを送信します。例えば、一部のマウスでホイールを左右に傾けると、WheelLeft::WheelRight::などのホットキーの限界に達するようなイベントが大量に送信されることがあります。
  • -

    To disable the warning dialog entirely, use A_HotkeyInterval := 0.

    +

    もしも警告ダイアログを全く表示させないようにするには、 A_HotkeyInterval := 0としてください。

    -

    Allows a maximum of 200 hotkeys to be pressed within 2000 ms without triggering a warning dialog.

    +

    警告ダイアログを表示させることなく、2000ms以内に最大200個のホットキーを押すことができるようになります。

    A_HotkeyInterval := 2000  ; 初期値(ミリ秒)です。
     A_MaxHotkeysPerInterval := 200