I want to create an interactive slide, which will have two parts:
- In the left side, some comments will be given in
enumerateenvironment (one will be highlighted at each overlay) - In the right side, an image will accompany the currently highlighted text (say, an arrow will be shown in that image)
For example, have a look at frame numbered 23 of this file.
Screen-shot:

What is the best way to do this?
As per asked, this is (a short version of) what I am trying...
MWE
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{minipage}{0.2\textwidth}
\begin{enumerate}
\item this is 1
\item this is 2
\end{enumerate}
\end{minipage}
\hfill
\begin{minipage}{0.75\textwidth}
\only<1> {\includegraphics[width=.75\textwidth]{fig4-2}}
\only<2> {\includegraphics[width=.75\textwidth]{fig4-3}}
\end{minipage}
\end{frame}
\end{document}
The images are:
fig4-2

fig4-3

Update
As @GonzaloMedina replies on the left-hand-side part (that solves my current problem), now I am left with dynamically creating the images. That means, rather than creating each image separately and then including is a tiresome and monotonous job. There should be some better way to reproduce one image from its predecessor. To complete the whole question, as per his (Gonzalo Medina) suggestion, I am creating this follow-up question.


\pausefor including each image. I think it will be to naive for the expert latex-ians. – hola Aug 09 '14 at 13:35\documentclass.... Note that it matters what the images are, for example. Code shows people what you are trying to do in a way which your question does not at the moment. (If the image is created on-the-fly, that's different than if it is included as an external file.) Moreover, you can set up an MWE using example images which saves people having to do that part of the work. – cfr Aug 09 '14 at 13:39mwepackage provides sample images for this purpose which you can just use\includegraphics{example-image-a}or whatever. That way, you don't need to post images. – cfr Aug 09 '14 at 13:58