i saw this on the official eq2 forums as a works around..
create a batch file to turn off flash before entering eq2 and turn it back on after leaving eq2.
create text file named flashy.bat edit it and past this inside..and run it before starting eq2 and again after exiting eq2.
@echo off
CD C:\Windows\System32\Macromed\Flash
IF "%PROCESSOR_ARCHITECTURE%" == "AMD64" CD C:\Windows\SysWOW64\Macromed\Flash\
IF EXIST NPSWF32._ll GOTO :turn_on
IF EXIST NPSWF32.dll GOTO :turn_off
:turn_on
ren NPSWF32._ll NPSWF32.dll
CLS
echo -----------------
echo Flash is now ON!
echo -----------------
pause
GOTO :desktop
:turn_off
ren NPSWF32.dll NPSWF32._ll
CLS
echo -----------------
echo Flash is now OFF!
echo -----------------
pause
GOTO :desktop
:desktop
CD %USERPROFILE%\desktop
:eof
|