📜 ⬆️ ⬇️

Ubuntu 9.10 Flash (x64), ZendStudio7 - a solution

Unpleasant problem with Flash in Firefox, when the buttons are not pressed.
If you are familiar, it is solved like this:

1. Remove the installed flash player (as a rule, Adobe)
2. Download the archive download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
3. Close Firefox
4. Unpack the archive and fasten the plugin like this:

tar zxvf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
sudo cp libflashplayer.so /usr/lib/mozilla/plugins/
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/xulrunner-addons/plugins/

5. Launch Firefox and sigh with relief :)
')
Alternative option to download / install the plugin:

wget queleimporta.com/downloads/flash10_x64_en.sh && sudo chmod +x flash10_x64_en.sh && sudo sh ./flash10_x64_en.sh

(taken from here )

UPD: Solving a similar problem with buttons in ZendStudio7 :

1. Create a shell creak with this content (just indicate your path to ZendStudio):

#!/bin/bash
export GDK_NATIVE_WINDOWS=1
/usr/local/Zend/ZendStudio-7.0.2/ZendStudio "$@"

2. Use it to launch the studio.

(taken from here )

PS: thanks 1999 ;)

Source: https://habr.com/ru/post/76460/


All Articles