Silverlight and HTML5 are the future.
Silverlight is good because its proprietary and that is sometimes a good thing,
weswii 2 months ago
That is some awsome music sounds like Depeche Mode
jade007z 3 months ago
Flash is more natural to understand....
XYZGenesis 4 months ago
me duermo
aguirrepm 6 months ago
Flash AS3 code:
import flash.events.MouseEvent;
function addBall(event:MouseEvent):void{
var b = addChild(new ball());
b.x = mouseX;
b.y = mouse.Y;
}
stage.addEventListener(MouseEvent.CLICK, addBall);
TasmanF1 9 months ago
Silverlight C# code:
ball b = new ball();
Canvas.SetLeft(b, e.GetPosition(this).X);
Canvas.SetTop(b, e.GetPosition(this).Y);
LayoutRoot.Children.Add(b);
Silverlight and HTML5 are the future.
Silverlight is good because its proprietary and that is sometimes a good thing,
weswii 2 months ago
That is some awsome music sounds like Depeche Mode
jade007z 3 months ago
Flash is more natural to understand....
XYZGenesis 4 months ago
me duermo
aguirrepm 6 months ago
Flash AS3 code:
import flash.events.MouseEvent;
function addBall(event:MouseEvent):void{
var b = addChild(new ball());
b.x = mouseX;
b.y = mouse.Y;
}
stage.addEventListener(MouseEvent.CLICK, addBall);
TasmanF1 9 months ago
Silverlight C# code:
ball b = new ball();
Canvas.SetLeft(b, e.GetPosition(this).X);
Canvas.SetTop(b, e.GetPosition(this).Y);
LayoutRoot.Children.Add(b);
TasmanF1 9 months ago