All posts tagged Flash

opanka_01
opanka_02
opanka_04
opanka_03

Opanka

Team

  • AS3 Programming: Mozart Petter
  • Design: Boca

Other Information

  • Client: Opanka
  • Agency: Boca
gazetadopovo_01
gazetadopovo_02
gazetadopovo_04
gazetadopovo_03

Gazeta do Povo Penalty Kick Game

The Project

This project was developed to the Gazeta do Povo newspaper (a local newspaper from Curitiba, Brazil) in the Promoonline agency. The game is part of a promotion of the newspaper with the world cup theme, where the player who make more points win a prize (a MacBook).


In the game, you have to make some penalty shots. There are 3 stages with 5 kicks each on. When you go to a next stage, things are go to be harder, the wind will add some difficulty to your shots and the goalkeeper gets smarter.

The game had a great feedback from the participants, including a newspaper article with a review about it. Some people have played the game about 160 times, trying to make more points and win the prize.

Read more…

hsbc_01
hsbc_02
hsbc_03

HSBC WTCC Game

Team

  • AS3 Programming: Mozart Petter
  • 3D Models: Rafael Sino

Other Information

  • Client: HSBC
  • Agency: Promoonline
nutrimental_01
nutrimental_02
nutrimental_03

Nutrimental Augmented Reality

Team

  • AS3 Programming: Mozart Petter
  • 3D Models: Fred Freire

Other Information

  • Client: Nutrimental
  • Agency: Promoonline
olympikus_07
olympikus_01
olympikus_02
olympikus_03
olympikus_04
olympikus_05
olympikus_06
olympikus_08

Olympikus Site

The Project

This project was developed for the Olympikus trademark on the AG2 agency. The site has the objective of show to the visitors the products of the Olympikus trademark, the marketing campaigns, the athletes and teams sponsored by Olympikus and what technologies are applied to create the shoes.

We took 3 weeks of work to develop the UI of the site, that contains more than 15 sections.

Read more…

Best Pratices: Comments and ASDocs

You can think that this title is funny, because the subject seems to be simple and basic, but believe me, there is a lot of people that has doubts about how comment the code, a lot of people that don’t use (and them should) the comments, some people that doesn’t know what it is or never seen.
If you fit into one of the profiles above, or not, you can be interested on the utility that the code comments have to us, programmers.

Believe or not, we can consider the comments like one of our best friends when the subject is programming. A comment has the objective of documenting the wrote code, so that in the future you know what that code does, and why it does. And it helps on the code viewing too.
We can think that doesn’t has need to comment a code, because at the moment that we are writing the code, everything is clear and fresh on our mind. But the problem comes my friend, when after some months, you have to do “some updates” in the code.
What you see is a tangle of words, and it’s really complicated to find something there. And if you find what you want… you don’t know how it works, because the code is very large and you will expend hours trying to figure out where you have to edit, or because it doesn’t explains itself enough.

That is where our friend comes. If the code is well commented, the viewing will be better (because the code isn’t squeezed) and you will have an explanation of what that piece of code do.
There is three types of comments in most languages: line comment, multi-line comment, and the last, asdoc, similar to javadoc.

Read more…