I would like to animate the following path from A to B.
\begin{tikzpicture}
\draw [->, draw=black!70, line width=2.5] (8,4) -- +(1,0) node (v4) {} -- +(1,-2) -- +(0,-2);
\node at (7.5,4) {A};
\node at (7.5,2) {B};
\end{tikzpicture}
Something similar to the code AlexG provided in Animating Protocols
\documentclass{beamer}
\usepackage{tikz}
\usepackage{animate}
\begin{document}
\begin{frame}
\begin{animateinline}[autoplay,loop]{3}
\multiframe{10}{rPos=0.1+0.1}{
\begin{tikzpicture}[]
\node (s){A}; \node (r) at (1,0) {};
\node (t) at (1,-2) {};
\node (v) at (0,-2) {B};
\path (s) -- (r) -- (t)--(v) node[pos=\rPos,coordinate] (p) {};
\draw[->, draw=black!70, line width=2.5] (s) -- +(r)--+(t)--+(p);
\end{tikzpicture}
}
\end{animateinline}
\end{frame}
\end{document}

\documentclassand\usepackages, that illustrates your problem. Show us where you are getting stuck in applying AlexG's answer to the existing question, and you will stand a better chance of getting help. – Henry DeYoung Oct 06 '12 at 20:10\begin{document} \begin{frame} \begin{animateinline}[autoplay,loop]{3} \multiframe{10}{rPos=0.1+0.1}{ \begin{tikzpicture}[] \node (s){A}; \node (r) at (1,0) {}; \node (t) at (1,-2) {}; \node (v) at (0,-2) {B}; \path (s) -- (r) -- (t)--(v) node[pos=\rPos,coordinate] (p) {}; \draw[->, draw=black!70, line width=2.5] (s) -- +(r)--+(t)--+(p); \end{tikzpicture} } \end{animateinline} \end{frame}
\end{document}
– Daves Broadley Oct 06 '12 at 21:21