Skip to main content

Flash Player Plugin in Adobe Air 2.6 on Linux

 

Adobe starting with AIR 2.7 has dropped the support of Linux and no further release has been made. It uses the flash plug-in version 10.3 for its HTML Control.

If you need to change the flash plug-in used by HTML Control in Adobe AIR on Linux, here are the simple steps to change the plugin to the latest one (11.2 as of writing). 

  1. Download the plugin from adobe website (install_flash_player_11_linux.i386.tar)
  2. Extract ‘libflashplayer.so’ file
  3. place it in /opt/Adobe AIR/Versions/1.0/Resources folder.

location reference:

air - linux

Comments

Popular posts from this blog

Capturing Console Output using c#.net in Windows Form Application

There is a case when we need to use same library code in both console application and windows form application. This is fine if there are no messages displayed in the output window (usually the progress / log messages). one way is to create a log file in a predefined folder (TEMP) and open it after process is complete. Here is one method that can be used to capture the console output and redirected to a text box in the windows form application. Steps Create a new class as given in the snippet Take the temp reference of default output stream of 'Console' class and set new stream output that captures and shows the output in the text box Once new stream is set, all the console output is displayed in the referenced text box After work is done, restore the output stream to default // Create a class for capture using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Form...

User Behaviour Analysis

Overview Every product where user come and interact, there is need to do User Behaviour Analysis to identify: What user wants What excites user (or engages user) How he interacts with our App (Web or Mobile) This is done to improve both User Experience and to make the product useful to user (and make it part of their daily routine as few social media and entertainment services). The whole tracking of User Behaviour depends upon  4 W s - Who , When , Where and What . Solution Design The Solution consists of 3 Key Components Event Tracker / Recoding APIs or Engine – This component would take input from different client Apps (Web or Mobile) and store them. The data transformation or normalization of input keys can be done in this component. Data Warehousing - The data required for different modules for analytics would be stored in the scalable storage (like HDFS, S3, ) Analytics / Reporting - provide an interface / reporting dashboard that can be used by Busin...

Change Default Content Overlay on Folder Icon in Windows Explorer

Want to Change (Default Folder Preview) to (Custom Preview image). Here’s how it can be done. Folder Properties Use the Folder Properties –> Customize –> Choose File. this will allow selection of an image that would be shown as preview of the folder. Modify desktop.ini [ViewState] Mode= Vid= FolderType=Documents Logo=C:\Temp\myFolderIcon.jpg Create folder.jpg simply create a file with name ‘folder.jpg’. It would then change the preview to this image.