It looks like a nice program :) The one area you can improve your Panda program is optimization — there are all sorts of things that you can leave off or modify that would make your program smaller and/or faster. For example, here is a piece of the code at the beginning of the program:
:For(A,1,25)
:Text(20,30,"Panda 1.2")
:End
Right off the bat, you can leave off the closing parentheses and qutotes:
:For(A,1,25
:Text(20,30,"Panda 1.2
:End
The next thing you can change is moving the Text( command outside the For( loop. You should always try to keep any invariant code (code that never changes) outside of a loop, and, in this case, the text never changes.
:Text(20,30,"Panda 1.2
:For(A,1,25
:End
The last change you can make to this code is replacing the For( loop with the rand command. Since generating random numbers is a fairly time-consuming operation, the rand(# of numbers) syntax is very effective at generating a delay in your program — the larger the number, the larger the delay.
:Text(20,30,"Panda 1.2
:rand(10
I hope this makes sense. If you have any questions, or need any help with anything, just ask.