Archive for 'flash'
Ciclare video flv con flash actionscript
Posted on 31. Jan, 2010 by Administrator.
var connection_nc:NetConnection = new NetConnection();
connection_nc.connect(null);
var stream_ns:NetStream = new NetStream(connection_nc);
stream_ns.setBufferTime(4);
my_video.attachVideo(stream_ns);
stream_ns.play("promo.flv");
stream_ns.onStatus = function(info) {
var netStreamStatus = info.code;
if (netStreamStatus == 'NetStream.Play.Stop') {
stream_ns.seek(0);
}
};
stop();
Continue Reading
3d secondo flash
Posted on 12. Nov, 2009 by Administrator.
Volete creare progetti 3d con flash? Le 3 migliori librerie sotto:
http://blog.papervision3d.org/
Continue Reading
Creare un realistico effetto fumo con ActionScript 3
Posted on 26. Sep, 2009 by daniele.
Questa classe permette di creare un effetto fumo davvero realistico. Nella directory dov'è localizzato il file .fla create una nuova cartella e rinominatela "script". Adesso aprite un editor di testo qualsiasi e copiate e incollate il seguente codice:
/*
*The smoke effect is achieved by creating small circles
*They are continuously moved upwards
*A BlurFilter is applied to make them look realistic
*As they float above their dimensions are increased and the alpha reduced
*Actually only 40 particles are present and they are continuosly
recycled to prevent the main memory occupied by the .swf file
from increasing.
*/
package script{
import flash.display.Sprite;
import flash.display.Shape;
import flash.display.MovieClip;
import flash.events.Event;
import flash.events.TimerEvent;
import…
Continue Reading
10 consigli utili per imparare Adobe Flash Cs4
Posted on 19. Sep, 2009 by daniele.
Link al tutorial: http://www.hongkiat.com/blog/10-killer-flash-tips-for-beginners/
Continue Reading
Creare un bellissimo effetto lente d’ingrandimento in Actionscript 3!
Posted on 18. Sep, 2009 by daniele.
Link al tutorial: http://learnflashwithme.blogspot.com/2009/09/create-magnifying-glass-effect-in.html
Continue Reading
[Flash] Creare un realistico battito di ali!
Posted on 16. Sep, 2009 by daniele.
Link al tutorial: http://www.flashvault.net/tutorial.asp?ID=262
Continue Reading
Creare un applicazione per disegno con flash
Posted on 14. Sep, 2009 by Administrator.

In questo tutorial, creeremo una applicazione per disegno in flash con tutte le caratteristiche basilari quali pennello, gomma, colori e salvataggio.
Link: http://flash.tutsplus.com/tutorials/games/create-a-basic-drawing-application-in-flash/


