After getting back from Microsoft, I dug up my old Compaq laptop, dusted it off and installed Vista Ultimate and Expression Studio (full disclosure – these were gifts from MS). Then I installed Silverlight 1.1, the Visual Studio 2008 trial, and the Silverlight 1.1 extensions for VS 2008 and got to work on some tutorials.
Once I got a few basic things working, I started trying out some stuff on my own. I figured the first thing would be to make a red ball that moved around the screen with x and y velocity, then give it gravity, make it bounce, make it draggable, etc. I ran into some things that made me wonder about people who say things like, “Flash is hard to learn. Silverlight is so much easier.” I’m honestly not trying to take a dig at Silverlight here. If someone can explain an easier way of doing things or something I’m missing, please do.
First off, making the ball was pretty easy. I made a canvas with an ellipse. Gave the canvas a name so I can access it in the C# code behind class. It’s there, giving code hints and everything. Great. So far, just like Flex.
Now, I need the equivalent of an “enterFrame” or a Timer… looking…. looking…… hmmm. Nothing like that at all. Time to search the web. I found this:
And several other links that recommend the exact same thing. This, as far as I can tell, is the accepted way of doing programmatic animation. Basically, you create a Storyboard object in XAML, and inside that put a DoubleAnimation, giving it a Duration.
Now, a DoubleAnimation, for you Flash folks, is analogous to some stuff in the various ActionScript tween packages. It’s designed to tween a double precision floating point number from one value to another. But it’s only being used as a makeshift timer here. The duration is set as a fraction of a second, like “00:00:00.017” which is about a 60th of a second. You can set up some dummy property to tween, or just leave it as is. When the “tween” is finished, it fires a complete event. In your C# class, you listen for the complete event and this is like your onEnterFrame or onTimer handler in Flash. The problem is, the Storyboard really is complete. It’s not a continuous timer or loop. So in your handler, you have to call Begin() on the storyboard so that it will run again and give you another complete event.
OK, I guess that works, but it seems like a complete hack. It seems like some of the old hacks we used to use back in AS1. Again, I’m not trying to just bash it. This is just my reaction. Having some kind of timer or looping system to repeatedly run code seems like a cornerstone of creating programmatic animation. The fact that developers had to come up with a hack like this seems like a MAJOR omission. Maybe this will be addressed by Silverlight 2.0. I certainly hope so.
The next major thing I ran into was in addressing objects from XAML in C#. For a Flex analogy, say you create an object, any object, say a Button, in MXML. In ActionScript you can address its properties directly, like:
[as]_currentX = myButton.x[/as]
Compare that to what you need to do in Silverlight:
[as]_currentX = (double)Ball.GetValue(Canvas.LeftProperty);[/as]
This is like Flash 4 getProperty / setProperty stuff. Yuck.
And to set a property:
[as])Ball.SetValue
So, whereas you could easily move something in AS3 like so:
[as]ball.x += 10;[/as]
In Silverlight, the equivalent code would be:
[as]Ball.SetValue
Please tell me if I am missing something here. My gut feeling is this can’t be right. But every tutorial I see is written like this.
For example, the following code explains how to do drag and drop in Silverlight:
http://msmvps.com/blogs/luisabreu/archive/2007/06/14/drag-n-drop-on-silverlight-alpha.aspx
In ActionScript, 90% of this would boil down to calls to startDrag() and stopDrag().
Now it’s not that I am scared of lower level, more verbose code. But usually a lower level language gives you a lot more power and control over things. I don’t see that that is the case here. I don’t see that the APIs for Silverlight are really lower level than what you have in ActionScript, just more verbose.
Also, I see how I could easily write classes that abstract that kind of stuff. Have a CanvasProxy class or something that has direct x and y properties, and internally manipulates the LeftProperty and TopProperty of a real canvas. I guess my real point is that I’ve seen so often from the Microsoft camp that “Flash is sooo hard to learn, try Silverlight. It’s so much easier.” If that is the intent, then why not give higher level APIs that abstract that stuff and make things simpler for developers?
I feel I need to say it once more – I’m really looking for answers, not just digging on Silverlight. I know you MS guys are reading this! 😉 Let me know.
C# is easier than AS3, no question. But that does not translate into Silverlight being easier than Flash. Silverlight is really a mess imo, partly due to starting with something that was a mess, but partly due to making it that. The ultimate problem is that lots has been sacrificed to make the xml part more complete, however there are still huge gaps, and yet the xml is now more complex with more hidden mysteries than code could ever have been. Oh, and it is slow.
Bouncing ball is also simple enough, just wait until you get into multiple complex interacting animations, like the stuff that starts getting hard in flash (abandon all hope ye who use multiple timelines!). What you have to do is throw away all the xml, and make your own engine in C#. Something I would highly recommend they do for version 2 : ).
I honestly came to silverlight with a very open mind, I’d worked lots in xaml, love graphic programming, and swear by C# – I even made theconverted to get my flash assets over. Unfortunately it is a dog. I will remain open to a version 2 though, I guess that makes me an optimist : ).
Robin, oh yeah, I love C#. Not sure I would say it’s easier than AS3, but I would very much chalk that up to whatever you are used to. Glad to know it’s not just me seeing some technical problems with it. I wonder how much will change from 1.1 to 2.0.
so I wouldn’t agree flash is easier than silverlight… I’d say the dev tools are… but not the total environment at all.
a couple thoughts.
– the whole set/get value deal isnt like the old flash4 deal… its a left over from wpf dependency / attached properties. I don’t see that changing, but in ways “growing” … as data binding is added etc (http://msdn2.microsoft.com/en-us/library/system.windows.dependencyproperty.aspx or http://msdn2.microsoft.com/en-us/library/ms749011.aspx)
– programmatic animations, you might want to look at some of the work a colleague has done w/ dynamic storyboards ( http://www.cynergysystems.com/blogs/page/rickbarraza?entry=dd_02_dynamic_storyboards )
I think in general you have to look at silverlight as a whole new set of ux tools at your disposal… not just a as / flash port. Yes allot of it sucks now in alpha…. and will probably be a bit wonky in 2.0… but already out of the box… being managed code you get options never available to us before.
Many years ago there was a version of “paint” that i tought was incredible, with really advanced strokes effects that where implemented with vectors.
I installed a trial of paintx recently thinking it was the lastest version of this sofware. with a bit of search i stumbled on this article:
http://en.wikipedia.org/wiki/Corel_Painter. It looks like the “expression” version of painter was actually bought by Microsoft (so it’s the root of expression studio).
If the tools are as fun to use as i remember they where.. that would surely be a plus for this product (compared to the drawing tools avalaible in flash.. and the non-existent ones in Flex. 🙁
One Word One King = “Flash” (No one can beat flash.. Sorry Silver… you cant)
Keith: Thanks for posting this. I think it just shows that Microsoft has a completely different target. I really don’t see Silverlight as competition to Flash at all, but rather a tool for making experimental RIAs inside closed environments?
Eric: Painter is still with Corel. Microsoft bought Expression and turned that into Microsoft Expression Design: http://www.microsoft.com/expression/
J
Mike, thanks for the links. I’ll be looking them over. I know Silverlight isn’t a Flash / ActionScript port, but it IS positioned as direct competition, and as such it is natural, even necessary, to compare and contrast them. I’m curious about your statement, “being managed code you get options never available to us before.” Could you elaborate?
kp: no problem man, i do ALLOT of thinking/discussing on this.
so the options, there are a couple… but the main ones I harp on have to do w/ the same root… action script only exists in flash. .net exists across multiple platforms (ok win/mono) and layers (web/desktop/service/db etc) … so here’s a couple thoughts
1) the ability to build / adopt the wealth of .net stuff that’s out there. For example log4net, could be ported to run on the silverlight agclr.
2) get true write once run anywhere portability… so write code that can exist unchanged on the server (in a web service or asp.net app) , on a desktop app, and a silverlight app. Business logic is business logic not deployment platform specific. at the end of the day action script limits your reuse to only flash/flex, would be nice if there was action script to cfscript portability… but its simply not there.
3) when 2.0 hits there is supposed to be serialzation out of the box. If anyone has dealt w/ web service / xml in action script, you’ll know this is will be freaking sweet. This will probably be a port of what’s in the full clr, thus serializable objects on the server can be the exact same objects on the silverlight client, no need to develop vo’s to match your service. Just have the exact same code. If your service is java, no problem c# is so similar to java it should be only a few lines of code changes.
4) true object oriented type safe language. love it or hate it (lots of complaints will be coming from the flash/flex crowd due to allot of this stuff (start flame to me here))… for enterprise dev its important.
5) linq…. I can go on and on about how usefull this is in silverlight, but ill hold off… but lets just say the same linq server side code, can be used client side in silverlight.
But to sum it up…. Portability, extensibility, dare I say about a msft technology… open, when compared to action script.
phew…. now back to work 🙂
After playing with C# & using AS3 a ton I would say as languages go they are pretty equal. As I learned C# my AS3 experience helped me a lot because they are so similar in their nuts and bolts syntax and structure.
However where the languages began to differ (with AS3 the victor IMHO) was in documentation/API design. I find the AS3 API that Adobe has put together so much more approachable and understandable than MS’ C# API. Part of it is the difference in size, the Flash player (missing the deep computer integration) has a much smaller feature set than C#, but part of it was the cohesiveness of the API. With C# it was much harder to guess where to look or what to use from reading the API. Very different packages shared similar names, classes were located within packages that weren’t obvious, and there seemed to be near-duplicate functionality in various packages. These and other issues quickly drove me to the include documentation.
This was the other area where Flash does a better job. The documentation for AS3 (in the Flash IDE and online, not including forum hunting and what-not) was so much more informative and usable than the C# docs. So many times when using the C# documentation (which is really slow to load and refresh, causing further frustrations) I would find function descriptions that had little to no information. This compared to Flash where nearly all calls are explained in detail with good examples and descriptions. I have done so much of my AS3 learning using the included documentation that this lack in C# was ultimately the last straw for me.
In the end I would use whatever program gets the job done better, and I can see where Silverlight would be very exciting for someone very invested in .NET and C#, but it has a lot of “growing up” to do before its going to work for me.
As for C# vs AS3, certainly AS3 has come a long way, but it still has way too much ‘dynamic’ baggage, even in strict mode imo. Even though it seems to onl affect a minor part of your code (like 1%), it actually gets in the way of tools, bug finding, and ‘trust’ of your code in a pretty big way. An example is the ‘I-still-don’t-get-this-one’ cast up allows anything to be valid. Eg:
var m:Matrix = new Matrix(2,.4,0,1,13,14);
Object(m).gotoAndStop(5);
Compiles fine, runtime error. That is ouch on so many levels : ).
Oh and Jim, I think there is an inevitable blurring with C#, .Net framework, and Silverlight/Xaml with documentation. Not excusing it, but C# and the .Net Framework docs are generally really excellent, and have way fewer gotchas to start with. Silverlight/Xaml has a big drop off there. I’m sure this is partly due to it being still in flux, but also because the amount of interactions and interdependencies have caused a certain level chaos to set in — so very few people could predict expected behavior as files get more complex. An example would be the ‘freeze’ attribute (akin to cacheAsBitmap). That only works in some ambiguously defined situations, and is pretty hard to tell if it is working or not at runtime anyway. It seems like a minor detail, but anyone having done busy Flash stuff would certainly tell you otherwise. There are a lot of things like that, so the documenters certainly have their work cut out for them…
On the subject of AS3 portability – it’s EcmaScript 4, which means – from a language point of view – it’s every bit as portable as .NET.
Secondly – the underlying AS engine is open-sourced, and will be used as the JavaScript 2 engine in Firefox (there is also the Screaming Monkey project to inject this as a plugin into IE in case MS fail to implement JavaScript 2 in a meaningful timescale or compatible manner).
Of course, that’s all by the by, since the main thing that makes a programming language useful these days isn’t the language so much as the default programming libraries (which in the case of AS3 as it exists now, means the Flash API).
Then again, with the Flex framework itself being open-source, once EcmaScript 4/JavaScript 2 is supported in all mainstream browsers, there would be nothing to stop the community from replacing that underlying Flash dependency with Browser API calls (and if you look at the CSS and HTML 5 extensions being supported by WebKit at the moment – timed transition and rotation effects, ‘native’ video, etc, that’s not beyond the realms of possibility).
That’s digressing a little but it’s interesting to look at that in comparison to Silverlight – i.e. that it’s introducing another animation/media plugin rather than advancing putting those abilities into the browser. (I realise that’s only half of it – the CLR/DLR aspects are also important and interesting, and I think it’s inevitable that all browsers will eventually have client-side support for multiple programming languages).
so action script is pretty sweet…
but to me… not really portable today. In concept sure, but not today.
action script must run in the flash player or one of the players… client only
but the c# can be compiled against the full clr and run on the server/web/client
think of a validation object… that say, validates a zip code… you can make a single c# object that would run in silverlight …. then take the same code, unchcnaged compile out a clr dll… and have it run in a web service or a desktop client… what ever… unchanged
have 2 build scripts(agclr/clr) 1 set of code, deploy the dlls to the browser in a rich client, the server in a service or web app, or the client in a desktop app or installed service.
This is the kind of portablity i was talking about working today…
mWolf: keep in mind that we Flash users live in a GUI world. It’s very rare that we have a need to compile our GUI for use by server 😉
Then again – this is what Haxe (an Open Source Flash project) is cool for: same code on server and client: http://haxe.org/
J
Also, instead of recompiling the same method for silverlight on the web, then once for a windows app, once for a screensaver, once for a CD project, once for a cell phone, once for a pda… I think you get where I’m going here.. you would just play the same swf in all those mediums.
Of course in the real world radically different environments require a new or tweaked api anyway, but the affects everyone equally.
ok think outside of ui… think same object for silverlight app, same for desktop app, same for web service, same for asp.net app… etc my point is action script has to run in the flash player, this code does not.
Hey, did someone try to say that Silverlight is more ‘open’ than Flash?
lol… that’s a good one.