Tag Archives: bug

Solution to Click problem in linux/ubuntu

Hi,

when i installed the new 9.10 ubuntu in my new notebook, i realized time after the problem with the clicks in some flash app’s. was really troublesome, like see youtube videos or any other flash app i wanted to use/try.

today, after like 6 months with this problem i found the solution on this blog (in spanish). basically you need to edit the npviewer like this:

sudo gedit /usr/lib/nspluginwrapper/i386/linux/npviewer

and add this line before the last one:

export GDK_NATIVE_WINDOWS=1

save it and restart any browser that you have running :)

Regards,

Shadow.

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Related Post

Weird php bug? : “” == 0

Hi,

just happened something weird, i have a sentence like this:

if($var!=”"){

}

the thing is that the var sometimes get the value of 0, and for some reason it returned false (something that never happened to me before in 3 years programming in php). anyway i understand that can be considered as normal, but i wondering if is a bug :s (why it don’t happened before )

the solution?

if($var!==”"){

}

i hope has been useful :D

Regards,

Shadow.

[Slashdot] [Digg] [Reddit] [del.icio.us] [Facebook] [Technorati] [Google] [StumbleUpon]

Related Post