Posts contrassegnato dai tag ‘flash games’

h1

Interface with a View – Flash Presentation

23, Giugno, 2009

This post is related to Interaction Design – Interface with a View course by Yaniv Steiner at Architecture University in Alghero. The project has been developed together with Barbara Carcangiu.

CLICK ON THE IMAGE BELOW TO VIEW THE FLASH PRESENTATION

Immagine 1IF YOU ARE UNABLE TO VIEW CORRECTLY THE PRESENTATION DOWNLOAD THE SWF HERE

h1

Interface with a View – Computer Code Exercise

20, Maggio, 2009

This post is related to Interaction Design – Interface with a View course by Yaniv Steiner at Architecture University in Alghero. 

Click on the image below to go to the flash application.

Immagine 1

The ActionScript 2.0 code that does this is the following:

trace (“Applicazione è pronta”);
i=10;
myButton.onRelease = function() {

_root.myText.text = i;
if (i>0){

trace (i);
i=i-1;

}
else {

trace(“Lancio”);
myButton._alpha = 0;
_root.myText.text = “Lancio”;

}

}