* How do you Make my guy stop running animation (stand) after I move?
* How do I make him run to the Left?
You need to have events that detect which direction the player is moving. Either use Mouse&Keyboard conditions to find out which keys the player is pressing (or not pressing), or use the Platform behavior's VectorX expression to find out how fast he's moving.
I know you're waiting for my new Platform School tutorials to come out, but if you go through the old ones with v0.98.9 then they explain this sort of basic stuff. That much hasn't changed since v0.98.9.
*in the Conditions: what does the "Ceiling Just Above" Mean?
It means the same thing as "Has wall to left/right" or "Is on ground." In other words, it means there is a solid object touching the top of the player sprite.
One more thing: Either you need to use a separate collision object that you set your player sprite to, or you need to change the sprite's custom mask in the image editor. If you leave it like this then you will run into problems with Per Pixel collision. Again, my tutorials go into detail on this, you should really check them out. I hope to have the new ones out soon though.