Wink is a great program for creating video tutorials through the use of flash animation. You can take screen captures with Wink either on-demand or on a time-delay basis and then compile those screenshots into a swf file for use in a web page. You can also add explanation boxes, buttons and titles to your presentations. If you're looking for an easy way to create a video tutorial on how to use certain software applications or perhaps even a website then you definitely want to check out Wink. Unfortunately the wink package available in the Ubuntu repository is only available for the 32-bit architecture so this guide will walk you through installing it on the 64-bit version of Ubuntu.
First off you'll need to install the ia32-libs package if it's not already installed.
sudo apt-get install ia32-libs
The next step is to download the Wink package from
hereOpen your terminal and type the following:
cd /home/[YourUserName]/Desktop
dpkg-deb --extract wink_1.5.1060-3ubuntu1.2_i386.deb wink
dpkg-deb --control wink_1.5.1060-3ubuntu1.2_i386.deb wink/DEBIAN
gedit ./wink/DEBIAN/control
Find the line that begins with "Architecture:" and replace the "i386" with "all"
Architecture: all
Delete the line that begins with "Original-Maintainer: Daniel Baumann ". This step isn't mandatory but it will prevent an error from being displayed when the package is built.
Click Save and close gedit.
Type the following
gedit ./wink/usr/share/applications/wink.desktop
Find the line that begins with "Icon=" and replace "wink" with "/usr/share/pixmaps/wink.xpm". This step ensures that the correct icon will appear on your Applications > Graphics menu.
Icon=/usr/share/pixmaps/wink.xpm
Click Save and close gedit
The wink package requires that the libexpat.so.0 file be installed in your /usr/lib32 folder. The first step here is to check and see if you have that file installed. Type the following:
dir /usr/lib32/libexpat*
If you see a file named libexpat.so.0 then you can skip to step 12. Otherwise make a note of the latest version of libexpat that is installed. It's most likely going to be libexpat.so.1.5.2. Type the following: (make sure to replace the 1.5.2 with your latest version)
mkdir ./wink/usr/lib32
sudo ln -s /usr/lib32/libexpat.so.1.5.2 ./wink/usr/lib32/libexpat.so.0
Type the following to build the package.
dpkg-deb --build wink
Click on the new wink.deb package to install it or type the following. If you receive any errors during the installation you may need to install the
gcc-3.3-base and
libstdc++5 pacakges.
sudo dpkg -i wink.deb
Before running the program for the first time you need to make sure that all required libraries are installed. After you install the newly created package type the following:
ldd /usr/lib/wink/wink
If none of the libraries say "not found" then you should now be able to open wink from the Applications > Graphics menu.
To uninstall type the following command
sudo apt-get remove wink