Es tritt bei FF 35.0.1 auf.
Beiträge von Rudolfino
-
-
Hallo,
Problem trat bei mir auch auf. Habe daher eine Minprogramm geschrieben, das stetig mit der Maus wackelt.
Nicht schön - geht aber.;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; AutoIt (freeware) Miniprogramm, simuliert kleine Mausbewegung
; FireFox lädt auf einem Laptop dann korrekt
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 1.) Bei Doppelstart von WackelnMitDerMaus: Abbruch mit Meldung
;
; 2.) FireFox starten - wenn es noch nicht läuft (maximiert)
;
; 3.) Wackeln mit der Maus solange FireFox aktiv ist - dann EXIT ohne Meldung
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;#include <MsgBoxConstants.au3>
#include <Misc.au3>If _Singleton("WackelnMitDerMaus", 1) = 0 Then
MsgBox($MB_SYSTEMMODAL, "Warning", "Doppelstart von WackelnMitDerMaus verboten" & @CRLF & @CRLF & "Ggf. altes Projekt mit EXIT stoppen (Taskleiste rechts)")
Exit
EndIfLocal $xPos
Local $yPos
Local $aPosLocal $i
Local $iPID; Run FireFox with the window maximized - wenn es noch nicht läuft...
If ProcessExists("firefox.exe") = 0 Then ; Check if the firefox process is running.
$iPID = Run("C:\Program Files (x86)\Mozilla Firefox\firefox.exe", "", @SW_SHOWMAXIMIZED)
EndIfDo ; Endlosschleife bis FireFox als beendet gemeldet wird
$aPos = MouseGetPos()
$xPos = $aPos[0]
$yPos = $aPos[1]
$xPos += 1MouseMove($xPos, $YPos, 0) ; Move the mouse cursor to the x, y position, move instantly.
Sleep(20)$aPos = MouseGetPos()
$xPos = $aPos[0]
$yPos = $aPos[1]
$xPos -= 1MouseMove($xPos, $YPos, 0) ; Move the mouse cursor to the x, y position, move instantly.
Sleep(200)Until ProcessExists("firefox.exe") = 0 ; Check if the firefox process is running.
EXIT ; Ende WackelnMitDerMaus
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;