View Single Post
  #11  
Unread 07-12-2011, 10:00 AM
Ellyana's Avatar
Ellyana Ellyana is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Jul 2004
Server: Lucan DLere
Posts: 175
Default

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
Reply With Quote