Firefox 31 以降の最近のバージョンでは、startScroll(e) 関数が変更され、startScroll(scrolldir, screenX, screenY) で呼び出す必要があります。
変更前は、従来の bootstrap.js 拡張機能から手動で startScroll を開始できました。
aWindow.gBrowser.selectedBrowser.startScroll(e);
Mozilla IRC チャンネルでsendAsyncMessage "Autoscroll:Start"を使用するためのヒントを受け取ったので、さまざまな組み合わせを試してみました
aWindow.gBrowser.selectedBrowser.startScroll("NSEW", e.screenX, e.screenY);
aWindow.gBrowser.selectedBrowser.messageManager.sendAsyncMessage("Autoscroll:Start", {scrolldir:"NSEW", screenX:e.screenX, screenY:e.screenY});
しかし、何も機能しません。
私の問題の最小限のboostrap.js拡張は、http://pastebin.com/azv1jePtで見ることができます
Chromeスクリプトを使用せずに、Firefoxの新しいバージョンでbootstrap.js拡張機能から直接自動スクロールを手動で開始する方法を知っている人はいますか?
ありがとう
セニカー