Posts Tagged ‘coding’

These are the steps of the application design: concept, flowchart, content, visual design and
code.
The mere concept is nothing more than a point of departure; it’s creating the flow that makes
you understand the feasibility of the application and it’s coding that makes it attractive
for the company.
The finished product requires to carry out all the steps.
The application [...]


Just a little bit of coding.
Interface simulation: pressing the button it starts a countdown to launch.
Simulazione di interfaccia: premendo il pulsante parte un conto alla rovescia fino al lancio.

trace (“applicazione pronta”);
i=10;
_root.pulsanteverde.onRelease = function () {
 
 _root.testodinamico.text = i;
 
 if (i>0){
 trace (i);
 i=i-1;
}

else {
trace(“lancio”);
_root.pulsanteverde._alpha = 0;
_root.testodinamico.text = “lancio!”;
}
};
CODICE
trace (“applicazione pronta”);
i=10;
_root.pulsanteverde.onRelease = function () {

_root.testodinamico.text = i;

if (i>0){
trace (i);
i=i-1;
}

else {
trace(“lancio”);
_root.pulsanteverde._alpha [...]