Flash vs. Silverlight: What Suits Your Needs Best?
With the release of Silverlight 1.0 and its subsequent versions, a debate started among designers and developers regarding choosing between Flash and Silverlight. Silverlight faces difficulties in capturing the market because of the maturity of Flash. However, Silverlight has managed to keep up by including certain features that designers and developers have always wanted to see in Flash, such as search engine optimization. In this article, we will discuss some of the technical differences between Flash and Silverlight to help you choose the technology that best suits your needs.

Animation
Flash uses the frame-based animation model. In frame-by-frame animation, we create an object for each frame to produce an animation sequence. For example, if you want to move something across the screen in 3 seconds, calculate how many frames 3 seconds will take, then calculate the matrices required for each frame along the way. Keep in mind that the player won’t actually maintain a frame rate unless you embed a blank audio track; otherwise, 3 seconds might turn out to be 2 or 6 or 5.
Silverlight is based on the WPF animation model, which is time-based instead of frame-based, so you define the start and end conditions, and it figures out how to do it. No need to deal with matrices like with Flash. Also, no need to calculate the positions of objects in various frames.
File Size
Flash uses a compressed format, and text and images are embedded in the movie, hence the file size of a Flash component is relatively small.
Silverlight uses XAML for its description language, and it is non-compressed, so the size of a Silverlight component is usually larger.
Scripting
ActionScript is used to program Flash objects. ActionScript is an object-oriented language with a full range of controls for designing user interfaces. And it can be integrated with back-end technologies that use other languages and frameworks, such as PHP, ASP and Ruby On Rails. It comes with a huge, powerful class library for developing online browser-hosted applications and stand-alone desktop applications.
For Silverlight scripting, you can choose from among a number of programming languages such as Visual C#.Net and Visual Basic.Net, including client-side scripting with JavaScript. C# and VB.NET can be used to write managed code that runs on and uses all of the enhancements and capabilities of Microsoft’s .NET framework.
Video And Audio
Flash supports multiple video formats. The latest codec is very high quality, and the bandwidth usage is nice. There is one problem, though: if you create a tool that outputs Flash content, the formats it supports aren’t really used by anyone else. The original video codec, Sorenson’s proprietary H.263 implementation, is a mutant version of H.263. The compression follows the spec fairly closely, but a bunch of features were left out, and you can’t exactly just go find complete specs on how to build your own encoder.
Silverlight implements the industry-standard VC-1 codec for video, and supports WMV and WMA. Just about everyone already has Windows Movie Maker, but if someone doesn’t, it’s not a big deal because Microsoft makes available a free SDK encoder for producing WMA and WMV. So, not only would you be using formats that people would more likely be able to encode themselves, but Microsoft provides your product with SDKs if you want to do the encoding yourself.
Sound Processing
ActionScript offers a set of sound classes that can be used to generate and control sound in a movie. You can add sounds from the library while the movie clip is playing and control those sounds. If you do not specify a target when you create a new sound object, there are methods to control sound for the whole movie.
Silverlight doesn’t have the low-level audio APIs you would need to write an audio application in the browser. It doesn’t even support playback of WAV files because .NET has very little audio playback support.
Accessibility
Flash provides rich accessibility features for those who have hearing and vision problems or who rely on keyboard shortcuts. Providing captions for video solves accessibility challenges for people who are deaf and hard of hearing, but people who are blind or have low vision or other physical disabilities need the video playback controls to be keyboard-accessible and to function properly with assistive technologies such as screen readers and screen magnifiers. Users who rely on keyboard access can use a variety of familiar shortcuts to control video. Buttons such as “Play/Pause,” “Stop,” “Rewind,” “Mute” and “Closed Captions” can be tabbed to and activated with the spacebar. Slider controls such as for volume and playhead position controls can be accessed via the arrow keys, and the “Home” and “End” keys can be used to skip directly to the beginning or end of a range. The volume slider also accepts numeric keys to set playback audio levels in one quick step.
Silverlight 3 is the first browser plug-in to provide access to all system colors, allowing people with partial vision to use familiar operating system controls to make changes, such as switching to high-contrast color schemes for ease of readability. These features are far fewer than those provided by Flash.
Platform Compatibility
Flash supports Windows Vista/XP/2000, Windows Server 2003/2008, Mac OS 10.1/10.5 (PowerPC), Mac OS 10.1/10.5 (Intel), Linux 5, openSUSE 11, Ubuntu 7.10 or later and Solaris 10.
Silverlight supports only Windows Vista/XP/2000, Windows Server 2003/2008, Windows Mobile 6, Mac OS 10.1/10.5 (PowerPC) and Mac OS 10.1/10.5 (Intel). Because Linux and Solaris support is missing, users of those operating systems won’t be able to experience Silverlight on their machines.
Text Representation/SEO
Flash stores fonts using shape definitions and the player doesn’t understand TTF, hence we cannot separate the text layer from the movie. Typically the text written on a flash component was not SEO friendly however Adobe has made the modifications to Flash so that it will be indexable, and the search engines have begun to index Flash.
Currently Google is the only search engine that is noticeably reading Flash files. They have worked closely with Adobe to develop the right toolset for the Googlebot in order to read the files for indexing. Yahoo is working on it and MSN is working with their own format, Silverlight, so they probably won’t be developing the toolset necessary to read Flash files.
To read more about how to make Flash SEO friendly, please read the following articles:
In Silverlight applications, user interfaces are declared in XAML and programmed using a subset of the .NET Framework. XAML can be used for marking up the vector graphics and animations. Text is deployed on web server as separate entity and can be read and accessed separately. Textual content created with Silverlight is searchable and indexable by search engines as it is not compiled, but represented as text (XAML).
Supported Image Formats
Flash supports almost all image formats.
Silverlight supports only PNG and JPEG file formats. Some other file formats are supported by Silverlight but in a limited way. A full list can be found here.
Socket Programming
The XMLSocket object implements client sockets that allow computers running the Flash player to communicate with a server computer identified by an IP address or domain name.
To use the XMLSocket object, the server computer must run a daemon that understands the protocol used by the XMLSocket object. The protocol is as follows:
- XML messages are sent over a full-duplex TCP/IP stream socket connection.
- Each XML message is a complete XML document, terminated by a zero byte.
- An unlimited number of XML messages can be sent and received over a single XMLSocket connection.
Silverlight doesn’t support socket programming. Silverlight supports sockets programming through the System.Net.Sockets namespace. Silverlight supports asynchronously sending data back and forth across a socket over ports ranging from 4502 to 4534. Silverlight supports cross-domain socket communications between a Silverlight application and any server, provided that a special security policy file is in place on the server.
Webcam Support
Flash has webcam and microphone support for live video and audio transmission, and using them is really easy in Flash. It takes only a few lines of ActionScript code to invoke the camera object.
| Camera.get | Returns a default or specified camera object, or null if the camera is not available. |
| Camera.setMode | Sets aspects of the camera capture mode, including height, width and frames per second. |
| Camera.setMotionLevel | Specifies how much motion is required to invoke Camera.onActivity(true) and how much time should elapse without motion before Camera.onActivity(false) is invoked. |
Silverlight doesn’t support webcam or microphone.
Deployment
The Flash deployment package contains only a single Shockwave (SWF) file, and all images, text and animations are incorporated in this file. Because of the compressed nature of a Flash component, its images and text are not indexed by search engines, and thus not searchable.
The deployment process of Silverlight is far more complex; all individual components need to be deployed separately. The following components typically get sent to the client for each Web request of Silverlight:
- XML files,
- DLL files (if necessary),
- Silverlight.js file,
- Any other JavaScript file,
- Resources (images, audio, video).
Read the full documentation on Silverlight deployment.
Windows Application
A Flash movie can be compiled into a Windows application and run as a standalone EXE file. It can also be played on a desktop that has an appropriate Flash player.

Silverlight doesn’t support playing the movie as a Windows application.
Media Streaming
Flash provides no such service to host the content and application with them. Thus, building a video website with Flash is not as cost-effective as building one with Silverlight.
Microsoft Silverlight Streaming by Windows Live is a companion service for Silverlight that makes it easy for developers and designers to deliver rich media as part of their Silverlight applications. The service allows Web designers and developers to host and stream cross-browser media and interactive applications that run on both Windows and Mac. This service can be combined with Microsoft Expression Studio and other third-party tools to create and develop interactive contents.
Silverlight Streaming by Windows Live is currently in beta testing and offers 10 GB of free hosting for rich-media applications.
Conclusion
Selecting the right technology for rich Internet applications is often critical, and choosing between Flash and Silverlight depends entirely on your requirements. If you expect that some of your users will be on Linux or Solaris, then you should go with Flash. If you want your website to be indexed by search engines, then Silverlight may be better.
Besides, as Doug S. is points out in the comments, it’s worth noticing that a minority of web users actually have a Silverlight plugin installed on their machine, while most users do have Flash-support. The Flash Player 9 and higher support streaming of the H.264 video codec which means anyone with a video program that can output an MP4 can stream to Flash. There are literally hundreds of free apps on Mac, PC and Linux that can do this. It’s also important to mention that the latest version of Flash Player supports 3D rendering while Silverlight does not and that SWF, FLA, FLV, and AS are all open-standard formats, while Silverlight is 100% proprietary.
The following table summarizes the features discussed above. Rather than including arrows to indicate whether each platform has a particular feature, we’ve simply marked “better” to show the areas in which each technology beats out the other.
| Features | Flash | Silverlight |
|---|---|---|
| Animation | better | |
| File size | better | |
| Scripting | better | |
| Video/Audio | better | |
| Sound processing | better | |
| Accessibility | better | |
| Platform compatibility | better | |
| Text representation/SEO | better | |
| Supported image formats | better | |
| Socket programming | better | |
| Webcam support | better | |
| Deployment | better | |
| Windows application | better | |
| Media streaming | better |
Further Resources
The following articles are suggested for further reading:
- An Overview of Silverlight
- Silverlight vs. Flash: An Analysis Report
- Flash vs. Silverlight: Theming and Styling
- Flash vs. Silverlight: Words and Numbers
(al)
















everonsoft.com
May 9th, 2009 6:30 amvery nice article…. great work again…
Doug S.
May 9th, 2009 6:36 amYou forgot to mention:
1. Only about 10-30% of the web has Silverlight while 99.97% of the web has Flash 9 or higher.
2. The Flash Player 9 and higher support streaming of the H.264 video codec which means anyone with a video program that can output an MP4 can stream to Flash. There are literally hundreds of free apps on Mac, PC and Linux that can do this.
3. The latest version of Flash Player supports 3D rendering. Silverlight does not.
4. SWF, FLA, FLV, and AS are all open-standard formats. Silverlight is 100% proprietary.
5. Actionscript is based off the same root as javascript and AS 3.0 and javascript are extremely similar. Silverlight uses Windows-centric code languages that are meant for the desktop and are likely only to be known by desktop-app developers. Higher learning curve.
Oh, and my personal favorite:
6. Silverlight is Microsoft, Flash is Adobe. Say what you want, Adobe does right by the web whenever they can. Microsoft does not. Wouldn’t you rather go with the company who doesn’t go out of it’s way to make your life harder?
riel
May 9th, 2009 6:37 amBecause Linux and Solaris support is missing, users of those operating systems won’t be able to experience Silverlight on their machines.
Sure, there is Moonlight Moonlight Project …
Kevin-K
May 9th, 2009 6:42 amInteresting article (although I only quickly scanned it)
Dave Redfern
May 9th, 2009 6:43 amHi, great article.
I will always be a flash supporter purely because I don’t like MS.
It’s sods law that this article comes out a week after i had to hand in an article comparing flash and silverlight for uni…
Jeff Putz
May 9th, 2009 6:46 amSilverlight apps are literally zipped into .xap files, and tend to be about the same in size, if not smaller. There’s a guy who implements samples in both and compares… do a search.
Silverlight does not use “scripts.” It’s a fully object-oriented platform.
On what basis could you possibly describe Flash as “better” for socket programming? You don’t offer any reason. Silverlight has the entire System.Net.Sockets namespace of the regular .NET Framework, as well as System.Threading, something that Flash sorely lacks. Flash is horrible for dealing with asynchronicity.
The only real arguments about which to use involve penetration rates and suitability for line-of-business apps. At 25% penetration, Silverlight is absolutely not suitable for use on home pages. But for writing UI intensive LOB apps, Silverlight is much better suited for the task. Beyond that, there are enough pros and cons for each that you use whichever one you know. Just remember that millions of .NET developers can dive into Silverlight pretty easily, which will only encourage its use.
Florian
May 9th, 2009 6:47 am“If you expect that some of your users will be on Linux or Solaris, then you should go with Flash.” This will probably be the case for ANY website, which makes flash in my opinion the way to go.
Radeksonic
May 9th, 2009 6:52 amNice article, but…
…you forgot something: to build Flash Applications, you need a large amount of money to buy Adobe Flash CS (1,2,3, or 4) to build them. For silverlight you don’t. That’s why I’m using silverlight.
Frederick
May 9th, 2009 6:53 amIt seems that there was no mention of Adobe’s Flash media server solutions. These are streaming solutions that use Flash’s proprietary RTMP protocol.
And, as a previous commentator noted, Flash 10 is compatible with H.264/AVC, which is an MPEG-4 standard. Just about anybody now can encode H.264 on any platform, with tools like MediaCoder, QuickTime, Adobe Media Encoder, HandBrake, and so on. This is far more reaching than the limited VC-1 support that Silverlight has, which may be an ‘industry standard’ but which is supported by far fewer applications.
Collin Rountree
May 9th, 2009 6:56 amYou also neglected to mention the development environment. Flash can be developed on either OS X or Windows, while Silverlight requires you to be using Windows to develop any silverlight applications, and not just Windows, but the Visual Studio development kit for Windows which is not in the typical arsenal for web development. No matter how you slice and dice it, Silverlight is Microsofts attempt at redefining the standard, and in my opinion, adding support for search engines in your web application is not worth the switch when it could just be embedded in the encompassing html. Someone else mentioned the price tag on Flash, you don’t have to buy the full CS suite to buy flash. Silverlight is cheap if you don’t want to use the advanced “scripting” features found in the VisualStudio. Every version of Silverlight I saw were plugins to Visual Studio, which is not cheap either. At least as a Mac user I can develop in flash, no choice since Microsoft went the usual proprietary way.
DKumar M.
May 9th, 2009 6:59 amI Personally prefer AJAX (or more correctly, the dynamic html+javascript UI) over flash or silverlight coz AJAX is popular because it builds directly on current web skills (javascript, html, css), doesn’t require a client-side plugin or support (even though the javascript can sometimes be an even larger download) is generally cross-platform, solved an immediate problem (async data) and for the most part, didn’t provide the enormous flexibility that Flash or Silverlight do today. Developers could wrap their heads around it, and build apps without having to have a designer background. Still, it’s hard to beat the flexibility and SEO response of HTML/CSS & AJAX in compare to Flash and Silverlight.
Nice writing Muhammad… good analysis and great reading… Thanks for sharing.
DKumar M.
@instantShift
Nixk
May 9th, 2009 7:02 amNever even heard of Silverlight. Never will try or even use it.
M$ sucks.
Mats Taraldsvik
May 9th, 2009 7:07 amRegarding Platform Compability :
What is “Linux 5″ ?
Has the author looked into Mono and Moonlight – the Open Source implementation of the .NET stack and Silverlight, respectively? I think there is also support in MonoDevelop for creating Moonlight stuff.
Mono runs on most platforms (BSD, Linux, Solaris, Mac, Windows.. ), including the Wii, iPhone and PS3. I’m sure Moonlight and Monodevelop will gain more cross-platform compability soon…
mono-project.com
connecticut websites
May 9th, 2009 7:09 amthere’s no distinct compelling reason to choose Silverlight over Flash – the differences are subtle at best.
Daniel O.
May 9th, 2009 7:11 amI agree with most of the article. Some of the comparisons are either already outdated or will become outdated with Silverlight 3. Silverlight 2 supports sockets. Silverlight 3 will include H.264 support, webcam support, 3d rendering support, and many other new features that will help it to get up to speed with Flash.
My personal favorite: Silverlight is Microsoft. Programming Silverlight is fantastic. The millions of developers who do .Net can very easily learn to do Silverlight. Programming AS3 is terrible, with no unified IDE. People are quick to criticize Microsoft, but they are the most successful software company for a reason. Their development tools are unrivaled and their products are quite good. (I realize many designers are reading this and love their Macs, so please don’t attack me…)
I like both products. They are competing in a large market and will co-exist side-by-side. I choose Silverlight when the programming will be complex and Flash when the graphical side of it is more complex. Competition will make both much better.
keithics
May 9th, 2009 7:32 amfinally a non bias comparison.
Courtny Cotten
May 9th, 2009 7:38 amSM reads my mind….just yesterday I was introduced to Silverlight by one of our engineers…how eerie…
Good to point out the differences I asked a lot of these same questions when discussing which was better to use.
Philipp
May 9th, 2009 7:42 amWearing a developer’s hat, I can’t help but note the missing enterprise perspective. We recently made a comparison of Silverlight 3 (can run standalone) and Flash/Flex with Adobe Air. We were quite surprised that when it comes to LOB (Line of Business) applications, Silverlight already crushes Flash completely. The most important factors of ours were:
- Tool vendors from both ASP.NET and Windows Forms are making their move towards Silverlight. There’s already a broad range of high-quality commercial components available that cover common data visualization scenarios like grids, charting, reporting etc and the buzz is swarming with excitement – there’s a lot more to come.
- What people tend to ignore: Silverlight has a more development-centric community. While Flash was and still is a designer’s tool, your typical senior .NET guy has a deeper understanding of software architecture and the development lifecycle. When it comes to the enterprise, this is a critical factor.
- There’s an upgrade path to WPF where you have the full .NET framework with literally 10’000s of APIs at your disposal. Silverlight XAML is nearly a 100% compatible to WPF’s, so migration is not an issue.
- Both Silverlight 3 and Flash (Air) can run as standalone tools (out of browser). Silverlight 2 currently doesn’t provide the feature, so it’s out of the picture.
When it comes to your typical design-centric website, Flash would be the tool of my choice – the tools are just more mature and deployed runtimes are a crucial factor. But for the enterprise, this is a completely different game.
Cheers,
Philipp
Charlie Robbins
May 9th, 2009 7:51 amSilverlight supports both Frame based animations and non-frame based animations. If you are using Blend (the Silverlight designer), then your animations default to key frame based animations by default. You can control them very much in the same way as you would in Flash.
See more on the MSDN site:
DoubleAnimation
DoubleAnimationUsingKeyFrames
Anthony Persaud
May 9th, 2009 7:57 amYou forgot to mention that Flash is part of the set of tools (ecosystem) provided by Adobe to make it easier to create engaging experiences by separating the workflow but keeping all items in sync.
This article could be improved by taking into account the Flex SDK as a more developer tool/platform and the Flash IDE (“a designer’s tool” as pointed in the article).
substrate9
May 9th, 2009 8:07 amJust a couple of other Silverlight facts worth mentioning:
Languages – if you’re more into scripting languages than compiled ones such as C# and VB.NET, you can use IronRuby and IronPython to create SL apps: IronRuby and Silverlight
You don’t need to pay for Visual Studio to use it to create Silverlight apps – Visual Studio Web Express (one of the free versions) works fine.
And if you don’t want to use Visual Studio (or Windows), you can use the Eclipse plug-ins for Silverlight on your Mac: Silverlight with Eclipse
RicoPacino
May 9th, 2009 8:08 amFlash lacks HTML support, Flex component such as the rich text edtitor is really worthless.
Making a CMS in Flash you will end up using javascript HTML overlays… pretty lame.
Website interactivity/animation/surveys/banners : Flash.
Interactive Business Applications : Silverlight
Flex Builder versus Visual Studio: Visual Studio.
Dean Janssen
May 9th, 2009 8:09 amNice writeup. Bear in mind though, that Silverlight Mac PowerPC support has been discontinued as of version 2.0.
Anrkist
May 9th, 2009 8:22 amDoug C. – The great thing about the article is, it’s unbiased… unlike your comment =]
sandy
May 9th, 2009 8:51 amGreat article. Would just say that Flash is quite a bit better for all but the most basic, canned animation.
Raul Riera
May 9th, 2009 9:27 amThere are wrong facts here, first of all, you are comparing it to Flash CS3, when Flash CS4 has been out for a WHILE and it doesnt use the frame by frame anymore.
And seconds, to the guy that says you need to spend a lot of cash to build a flash application, just download the Flex SDK (open source and free) and go to town.
Design-Notes
May 9th, 2009 9:28 amNice Article and
Hello No 18 Philipp
You seem to know better. Do you have a blog or website?
Facundo
May 9th, 2009 9:34 amWow, exellent article. ++A!
Marc Hampson
May 9th, 2009 9:36 amComparing the tech specs of the way information is distributed in the presentation of animation is one thing, but you’ve completely glazed over the fact that flash offers virtually endless possibilities in it’s web animation capabilities and experience while Silverlight offers quick canned basics. To say that it’s better or offers more in the way of animation is just wrong. I’d be lying if I said I wasn’t already a fan of Flash, and I think Silverlight brings some great stuff to the table overall. But for web animation, it’s just not a player in the same game.
That grumbling aside, I found this article very informative as always:)
TiTi
May 9th, 2009 9:46 amWhat about Flex ? (flex vs silverlight)
anton
May 9th, 2009 9:51 amFlex and Flash is pretty much the same thing, but my opinion is that the comparasion should have been about Flex and Silverlight.
Karl
May 9th, 2009 9:55 amThere is no “Linux 5″
Kumar
May 9th, 2009 10:00 amThis was long awaited article. Though there has been many comparison, a step by step and concise is this one.
JB
May 9th, 2009 10:04 amNice coverage of both, but the fact that there’s no official Silverlight IDE for the Mac (and most likely never will be) pretty much ends the discussion. Microsoft wants designers and creative content providers to adopt Silverlight into their workflow, yet purposely ignores the fact that the overwhelming majority of us use Macs because we can’t stand MS products. Sure, I know you can use Eclipse and all that, but the fact remains that they require you to use their OS in order to get anything significant done. I would rather be boiled in molten lead than go back to using Windows, so I guess I’m out of luck if I ever need to develop a Silverlight app.
The dislike for all things MS is not just a snobby elitist thing, either. People who care about design have a much lower tolerance for things that are poorly designed. Microsoft’s products seem to come from a fantasy world wherein everyone – including designers – uses and loves their products. They have yet to wake up to the fact that it’s no longer the mid-90′s, and that intelligent consumers and users have moved on to things that better suit their needs.
Silverlight, the strategy behind it, and nearly all of Microsoft’s products are just more reminders that they simply want more market share. They couldn’t care less about empowering us to design better user experiences, and really just want to get people tethered to Windows and all their proprietary .NET stuff. No thanks!
Personally, I’ll be surprised if Silverlight still exists five years from now. Remember Microsoft Liquid Motion?
http://en.wikipedia.org/wiki/Microsoft_Liquid_Motion
Ignus
May 9th, 2009 10:06 amIt seems like the author is a flash fan-boy.
I have been developing in Flash for about 6 years now, and there are many many irritating things like the way flash handles threading (slowing down the movie on each thread running) etc. And communication between Flash and your web application is tedious to say the least. That being said, I am relatively new to Silverlight, so I havent yet discovered what will irritate me about it.
Jon B
May 9th, 2009 10:23 amThe article was useful but only gives a limited idea of what is possible with either technology – both can be ‘better’ than the other in a lot comparisons depending on how you choose to use what is available. You say silverlight has ‘better’ animation support – but it doesn’t have full IK (bones) deformation and animation to my recollection – also you talk about Flash animations be frames-based this is true but there is also the capabilities for time-based animations too – Flash has so many ways to achieve a result it can be both incredibly powerful but also easy to miss the potential ‘best way’ to do something. I’m sure Silverlight is similar too – personally I felt let down by the tools MS provided as they didn’t maximise the technology’s potential – but this is improving with each iteration.
Oh, and for video – you gloss over Flash’s standard codec support like it only has the bastardised sorenson – that was so long ago – it had the on2 VP6 codec since then – and now has mpeg4/h.264 support with aac audio – it will play standard quicktime mov files (which typically use an mpeg4 codec) as well most mobile phone video content .3gp as I understand it. It also has speex codec and server support for creating your own VOIP / video conferencing apps (amongst other things) Again, I’m sure Silverlight has a similar advanced feature set so I don’t want to appear like a Flash fanboy – but this article is misleading because it suggests this is the majority of what the technologies do – but they can do a lot more!
P.S. you don’t have to compile all your assets into the SWF – you can load them dynamically at runtime if you want them to indexable in there own right, or just for convenience, plus not all text is stored as shape outlines, dynamic textfields cannot be stored this way and so the text has to be present in the SWF, and also can be changed to text created with script or loaded remotely. Again I would think SIlverlight could do this too ;)
lenny
May 9th, 2009 10:25 amit is simple
after all my effort given to flash doubtlessly i will stick with it
no matter what silverlight or “goldenlight” might be
qbix
May 9th, 2009 10:25 amFlash is expensive, really? Try downloading FlasDevelop and the FlexSDK and you’ll be on your way without paying a dime. There are tons of classes out there to facilitate doing stuff like Augmented Reality, 3D, physics, tweening, preloading, multi-touch, etc, not to mention the plethora of tutorials, blogs, guides and forums out there to help anybody learn Actionscript. Flash is the clear winner.
Having said that, I’m glad Adobe has a competitor just to keep them in check and innovating.
DaveDigerati
May 9th, 2009 11:18 amHow could you forget to mention that Flash is ALREAD INSTALLED on close to 100% of the computers out there, while Silverlight is down around 25%?!? And that Flash will be similarly dominant in the mobile players?! HUGE OMISSION.
And btw, you should look at Microsoft’s own http://vine.net website where they USE FLASH INSTEAD OF THEIR OWN SILVERLIGHT. That should tell everyone something about the importance of ubiquity…
Jim Simpson
May 9th, 2009 11:30 amYes, the comparison should’ve been Flex vs. Silverlight. MXML vs. XAML – not ActionScript vs. XAML. The equivalent of Flash in the Microsoft ecosystem would be something like Expression Blend.
Good article, however I have to disagree on the Silverlight beating out Flash on the animation side. For anyone that’s ever built interactions using triggers in Blend, I think they’ll agree that it’s substantially easier to build the same interaction in Flash using event listeners and timeline-based animations.
The latest version of Flash has so much more to offer with regard to animation. Bones and rigging anyone? 3D support? Flash is a VERY solid animation tool – and beats Silverlight hands down.
josh
May 9th, 2009 11:30 amThis is article is biased to the point of being fanboi, with a couple of “pro-Flash” points put in to pretend it’s not. Example: “Industry standard VC-1″? Really? Except that H.264 is available in virtually every single place that VC-1 is except for MS products, and in an order of magnitude more places total (Flash, iPods, DirecTV boxes, mobile phones, etc).
And does no one remember the ActiveX fiasco? The only difference there was that MS had enough market share at the time where they could afford to make ActiveX only run on IE/Windows. What happens when MS decides Silverlight is well-supported enough that, say, version 5 is going to be IE only? Or purposely makes it perform so poorly on the Mac or on other browsers besides IE that IE becomes the default choice? There’s no denying that these are possibilities because they’ve done similar things in the past countless times. I can’t imagine any serious web developer risking being subject to MS lock-in again.
Marc Lijour
May 9th, 2009 11:32 amLinux 5? Do you mean Operating system 4? or Computer 6?
Interesting article but there are obvious gaps in what relates to non-Windows OSs ( e.g. Ubuntu is not Linux?). The author does not seem to know what Linux is when he does not name the popular distributions or confuses kernel with operating systems and distributions. There are other issues. For example, the author does not specify if Microsoft is providing its WMA encoders on Linux, and if there is a decoder available (what would you do with your data once it is formatted for Silverlight?). I don’t think MovieMaker is available on Linux either… and what about the Mono project (& moonlight: http://mono-project.com/Moonlight )?
Also, Flash support interpolations where you just need to define begin and end conditions. That makes the comment on Animations incomplete. I am not a Flash expert, but I thought I read something about Flash server and streaming (Google gives that link for example : http://www.adobe.com/products/flashmediaserver/fvss/). I have no idea how that compares to Silverlight streaming but it sounds related to me. Finally, I was surprised there is no mention of Flex or the Mono project, or even Adobe AIR.
The article does not look at software interoperability either. Does Silverlight works as well with Firefox (or Opera, Konqueror, etc.) as with Microsoft IE? As one commenter says above, the business environment should be considered. If you are a Microsoft shop then Silverlight has obvious advantages but may be not as much if you are a Java shop, a PHP shop, a Linux-based business, etc. Future articles could look into that direction. A comparison of interoperability features and “playing nice” with IT environments would be interesting as well.
saif
May 9th, 2009 11:44 amAwesome article. Good job!
smok
May 9th, 2009 11:49 amHmmm.. I’ve been using Flash since v. 3.0. With all those irritating things in Flash it is such a powerfull tool not only for programmers/developers but for graphicians too. Author didn’t mentioned it, as he focused on tech-level comparision, which is a huge mistake for such comparision. How do you say, SL has better audio/video support? What about learning curve, what about single-file-deployment in Flash. I’ve tried to use SL but it’s typical MS tool – too much complicated, thousands of separate files… Flash advantage is very huge in most cases, while its weaknesses are rather subtle. I personally was quite impressed how artists are making a use of Flash while the cannot do a single thing in SL. I saw some apps made in SL – they are slow and very unstable, even on MSIE. Have you ever heard of unstable Flash application? Once it works properly, it does work everytime on different machines/systems. And… games. Please, show me SL games. They present the level of early 90′s games made on Amiga.
read more at boycottnovell.com
May 9th, 2009 11:53 amSilverlight is a lie and a proven patent trap.
Moonlight is NOT – and will never be – equal to the Windows version.
It’s all about microsoft’s fud and obsession to own everything and everyone.
shw
May 9th, 2009 12:10 pmI’m really surprised how that article did get on this site. It’s not about differences about technologies – it’s an article about flash and how to find ways to show that it’s better than silverlight – including lying. Author read something about silverlight and to find its problems and things that it’s missing. Not knowing about Moonlight (and Monodevelop which allows to create and run silverlight apps on Windows, Linux and Mac OS X – there’s also IDE based on Eclipse to do the same).
On the license side of both technologies – there are no differences. Microsoft Silverlight and Adobe Flash are proprietary, both file formats are publicly documented standards.
When it comes to programming – silverlight gives much more – it’s language independent since version 2.0 (the logic can be written in any .NET language). It supports playback of WMA, WMV, MP3 and AAC, H.264 since Silverlight 3. It also supports 3D, pixel shaders and uses GPU to accelerate those operations. It does support socket programming – on much higher level. There are tools for creating executable files from silverlight applications – even free ones. Moonlight on the other hand did make it possible to use silverlight applications as desktop widgets.
I’m not a fan of silverlight technology – I do know a bit about it – just a bit but I see that it’s more that author of this article did know about when searching for information for this article.
There is one big problem with silverlight with which I have to agree – flash is more popular and it makes it more difficult to develop in silverlight rather than flash. that’s why from time to time I have to develop in flash (and hack it to do what I want – especially when using AS2) insted of any other technology.
don’t get me wrong – I’m not a MS fanboy – I try to choose and use technologies that are usefull for certain needs – I just see that some people hate MS so much that they will write anything to show other how much it suck.
Andy
May 9th, 2009 12:32 pm@Radeksonic: What part of open standards didn’t you understand? You don’t HAVE to use Adobe’s IDE to get the job done, there’s plenty of free third-party IDEs for that.
Rob
May 9th, 2009 12:35 pmIt’s only a dream in someone’s imagination that those of us who use *nix have any real interest in Mono. Whenever anyone tries to push Microsoft software on us they always say “It runs on Mono!” as if that means anything to us and makes us have a burning desire to install or use it.
It’s also funny to see Windows developers think Silverlight is so much better because it integrates well with Windows and Microsoft tools. This means nothing to us who don’t use either and have no use for either.
The internet is a *nix world, no matter what Microsoft wants you to believe and think, and it will never be Microsoft’s world.
Faraz
May 9th, 2009 12:48 pmThis article doesn’t say that Flash is good over silverilght. Its a technical comparison and if flash is good then its good.
I liked the comparison though!
seth
May 9th, 2009 1:00 pmNo one mentioned Flash Media Server or Flash Lite
As Flash developer I cant see anything interesting here – sorry
Jon B
May 9th, 2009 1:15 pmIt’s odd how the Flash users think this article is biased towards Silverlight and misses the benefits of Flash, and the Silverlight users and Flash ‘dislikers’ seem to read this article like it is biased towards Flash… As a long-time Flash user I think it unfairly misses some of what makes Flash a superb technology. As a lightly-trained Silverlight developer who works for .Net focused companies I feel it incorrectly weighs things up when really both technologies can do pretty much anything you’d ask of them if you learn how to use them. I don’t feel this article was a deep look at the technologies’ capabilities. But ultimately if you are a .Net developer you’ll think Silverlight rocks (largely because it gives you the power to create something that you used to have to turn to the mysticism of Flash and it’s developers for) But from a code point of view both .Net languages, and AS3 (including pixelbender and Alchemy) provide such fantastic capabilities a comparison should be less about features, and more about “which do you like to develop better?” It’s a personal choice – but for me, until Silverlight (player) has reached the adoption level of Flash (player) then it’ll be Flash whenever I need some ‘rich interactive blah blah blah’. For each case/project you should think of what markets you want to reach and then work out which technology provides the most easy/best/cost-effective approach, taking into account you and your company’s skillset – there is no true winner between these technologies – they are as much different as they are rivals – I hope people make their decisions based on their own research and testing and not fairly shallow comparisons.
expressions
May 9th, 2009 1:15 pmThank You SM,
And to readers, the article is about pros and cons :)
I know flash. Its great.
I am learning Silverlight because of easy learning curve.
Gonzobot
May 9th, 2009 1:29 pmIs Silverlight the plugin that has made my browsing experience worse? In past times, clicking a pic link would open that pic, i.e. the browser would browse its way to that file and display it. Now, the current page dims, an Aero-looking spinning icon appears, then a new frame expands into view with my picture in it. And I can’t right click on it. And I have to aim for a tiny (sometimes nonexistent) ‘close’ button on the bottom of the picture. Pics are scaled, too, with no option for manipulating the size (which I am used to, being a firefox user with addons specifically for this task).
Guess you could call it a strictly end-user persepective, but I FSCKING HATE THAT. I’m not even using Silverlight, or an MS browser for that matter!
Lucky
May 9th, 2009 1:30 pmI can’t believe one can compare the quality of flash’s animation tools with the toddler tools silverlight gives you. Flash’s animation tools are so many, there are a thousand and one ways to animate with it. You’re not limited to one tool, to fbf, to tween, to do swap symbol animation etc. It gives you so many options from beginer options such as basic tweens to the after effects advanced motion tween system with the ability to reuse animation. Silverlight has a long way to go in my opinion before it reaches flash level.
Charlie Hayes
May 9th, 2009 1:32 pmThis article is wrong on nearly every item. The author of this article should be ashamed of themselves.
Leon
May 9th, 2009 1:33 pmOh wow….just wow. What a misleading article. I really expected better of Smashing Magazine; at the very least an editor could have done a quick fact-check of these points. Virtually every point about Silverlight is outdated by 6 months to a year, except for the ones that are completely wrong.
For example, claiming that Silverlight doesn’t allow for the creation of a desktop app. Silverlight by definition is a subset of WPF, which primarily exists to create desktop apps. Also, deployment for most folks is just embedding a .xap file into your html with a single line of code – how is that complex? It also supports tabbing between fields, has audio playback support, supports sockets, etc etc.
Again, I’m very disappointed to see this here. Criticism is one thing, but trolling a few message boards and rewriting half-truths as fact for a “legit” comparison is quite another.
Jay
May 9th, 2009 1:40 pm@Leon: it is fun to read about Silverlight features outdated by 6 months, when author fails to mention things that were available years ago in Flash (mxml, media servers, h264 support and a few more) – so – please don’t complain ;)
Oh, and as per pricing – I understand that people aren’t happy about paying for tools and I guess it is fine if you do open source or free work, but most people use Flash and microsoft tools to do real work, as in “for money”, so paying for tools isn’t really a big deal, especially that development services tend to be costly.
As mentioned before – Flash development can be free – flex sdk is the way to go and it is pretty straightforward, but my choice here is Powerflasher FDT for Eclipse, it saves me hours of every project time.
Ulysses
May 9th, 2009 2:13 pmFlash is my preference for obvious reasons. It’s has better file compression, integration with PHP, ASP and Ruby On Rails, it supports all image formats, it has webcam support, it’s easy to deploy and supports SWF, FLA, FLV and AS, all open-standard formats, while Silverlight is 100% proprietary. One more thing, I’m a Linux user, Silverlight doesn’t work on Linux.
Adis
May 9th, 2009 2:15 pmI dont understand how SIlverlight can be better in Video/Audio?
If im right you can play FLV, MP4, M4A, MOV, MP4V, 3GP and 3G2 with flash?
Richard Sakai
May 9th, 2009 2:23 pmGo with flash, Silverlight doesn’t officially support Linux and also Flash adoption is higher very close to 99% whereas Silverlight is much less.
Pieter
May 9th, 2009 2:29 pmNo microsoft, i won’t install your bad attempt at stealing adobe’s market.
Another reason why you shouldn’t use silverlight, you won’t reach stubborn people like me, less $ for your bussiness.
Oh and, how the hell do you explain silverlight beating flash in video?!
bolomkxxviii
May 9th, 2009 2:30 pmSilverlight requires .net. That is a non-starter for me. Also, for those who have mentioned moonlight for linux and solaris, you obviously haven’t tried it. It is a poor cousin to Silverlight. The ONLY good thing about Silverlight is it will push Adobe to fix some of the weaknesses in flash.
Steve
May 9th, 2009 2:31 pmSilverlight = DRM.
Addi
May 9th, 2009 2:33 pmThis article reflects a sound knowledge of author regarding these two products which are major market shareholders. It really gives me good overview of both technologies. Great!!! Keep it up.
oliver, priest
May 9th, 2009 2:49 pmI’m using Flash/(FLEX).
Silverl. is kind of nice but .. meh … u know ;)
gons
May 9th, 2009 2:52 pmYou really shouldn’t compare Flash to Silverlight, compare Flex instead!
rdas7
May 9th, 2009 3:01 pmWow, I don’t even know where to start with the factual inaccuracies of this article. I hope that anyone seriously interested in learning the differences between Flash and Silverlight continue searching, and forget they ever found this page…
Don’t even get me started on recommending outdated formats like WMV over codecs like H.264 because “everyone has access to Windows Movie Maker”…
Teo Graca
May 9th, 2009 3:15 pmThis is a great in-depth description of these two technologies, and I like that it keeps an impartial tone. I tend to go with technologies that are compatible with most browsers (Flash), but have worked with both and they both have advantages and disadvantages. Excellent!
Tony Testa
May 9th, 2009 3:16 pmI think that its important to note that the author is refering to Silverlight 1 deployement when they say you have X number of files you have to deploy. Silverlight can be deployed JUST like flash and uses a .XAP file, which is really just a zip file (change the extension to zip to see the files) and can be embedded into an object tag just like an .SWF
Mark
May 9th, 2009 4:50 pmMake sure you do the most important comparison of all – see how well your page works in Linux and Mac.
Martin Doms
May 9th, 2009 4:50 pmFYI Silverlight does indeed compress application files. The client receives a .xap file which is a zipped, minified version of the client XAML and resources.
Ignus
May 9th, 2009 4:56 pmSorry for posting again.
Besides the obvious, we can agree that both Flash and Silverlight have about the same scope of functionality, even if one has a slight edge over the other. If your goal is to stick an animation into a HTML page, then sure, I would say use Flash. I have been using flash for 6 years now, and come from a programming background. AS being a loosely typed language, rather sketchy intellisense and lacking some cool functionality to jump to methods by with the “go to definition” functionality MS tools have, I find that given you take the time get to know the IDE and power that access to all the core libraries that .NET has gives you, I dont think Flash will snuff out Silverlight. Then take into account how far Silverlight has come in a few short years, as opposed to Flash then we are starting to notice that Silverlight today might only be the giant waking up. Im not a MS fanboy, I choose the tool thats best suited for a job.
From a personal perspective, I also have to mention that the Silverlight IDE compares well against the flash IDE and after a long day’s coding and recoding, my code just feel more manageable in Silverlight (if that even makes sense)
Oran
May 9th, 2009 6:25 pmWow, after reading all the comments, it’s clear that this “comparison” does just as lousy of a job describing Flash as it does Silverlight.
What’s even sadder is that I can count on one hand the number of commenters who are able to look past their biases enough to realize this.
bayan
May 9th, 2009 7:03 pmthe only reason I prefer Silverlight, is because if I stream something full-screen in silverlight, it doesnt take up 40% of my E8400 (both cores…) to do it. Flash for some reason decides in needs almost half of my powerful CPU, and thats really annoying to me…. I’ve tried on XP/Vista/7, and flash behaves the same way.
Chris Morledge
May 9th, 2009 7:15 pmSeems to be a few out dated or just plainly incorrect statements in this article. Plus some comparisons where not exactly like for like. Not of the high standard I tend to find on SM.
Zach
May 9th, 2009 7:51 pmYou have animation and video won by Silverlight, I work designing for both platforms, and I would argue this conclusion as currently, Silverlight has no transparent video support, making it very difficult to implement smooth canned video animations, say, rendered in After Effects. Sometimes in the real world it is not practical to code animation sequences, and therefore the option to bring in a transparent video asset is priceless. Great article, I enjoyed it immensely. You are also brave for touching upon a topic that is bound to cause a flame war of bias and untruths.
james
May 9th, 2009 8:04 pmAnother anti microsoft, mac-nix article from smashing. Stick to what you do best and go compile another “top ten jquery” article, and leave the writing of these articles to people who care enough to provide educated insight. As a designer who works primarily with ms tools (rare enough) I find the consant attempt to jutify a mac purchase a little tiresome.
Pete
May 9th, 2009 8:12 pm@Gonzobot: that’s ajax code, has nothing to do with Flash or Silverlight.
@Lucky to call Expression Blend a “toddler tool” tells me you haven’t invested any time in it. Don’t confuse lack of experience with lack of capability.
@Addi surely you’re kidding
As for Linux users in the comments: well, you’re important for sure, and I want to see both tools have the broadest reach possible, but your web browsing market share is currently less than the iPhone’s. Just saying the web is a “nix world” doesn’t make it true.
As to the article. I can only comment on the Silverlight inaccuraces (except for a few things that even *I* knew were wrong regarding Flash), but this article has so many issues that I’m embarassed to see it on the net. I hope folks who read it also read all the comments here so they can see just how wrong this article really is. It’s a research paper without any research, a supermarket tabloid-level comparison of two awesome technologies.
XAML is absolutely compressed. At the very least, it is compressed by the standards-based compression method used for the application package – zip.
On languages, don’t forget that you can use IronRuby and IronPython. There is no back-end server requirement, so all the same back-end technologies that work with flash (PHP, ASP, Ruby on Rails) all work with Silverlight. C# is an open standard language more so than ActionScript if you want to be picky. Silverlight’s support for .NET is a subset of .NET, not the “full power” or for that matter, full install and footprint, of the .NET CLR. 4.5mb gets you everything you need.
Media: I can’t remember the last time I saw serious video done in Windows Movie Maker :P. On formats, why did you leave out Flash and Silverlight H.264 support? Please note that Silverlight 3 has native support for H.264 and also allows you to easily create your own codecs in managed code. Those same APIs can be used to dynamically create audio (see my synthesizer example here: http://bit.ly/FtCNs ). This approach isn’t as nice as what you get with Flash, but there is an example showing how to play .wav files as well.
Accessibility: Silverlight has support for the accessibility APIs used by screen readers and other tools. It also has support for keyboard navigation. I seems you didn’t do much investigation there. I haven’t investigated Flash on this front, but my colleages on that side of the aisle tell me the accessibility support in Silverlight is much better.
Platform: Silverlight 2 and 3 do not support PowerPC Mac. Linux support is provided by the Moonlight team – an open source version of Silverlight that runs Silverlight applications without requiring a proprietary player.
SEO: Your example is really a red herring. Flash does not support indexing of the most important thing: dynamic content. What does it matter if field labels and static content can be indexed? That’s a pretty small part of the picture. Silverlight 3 and .NET RIA Services have a great SEO story, and fully support deep-linking into Silverlight apps. As with any RIA, it’s still more work than straight HTML, but the results are very promising.
Sockets: It should be stated that the Socket support in Silverlight is true sockets support, not something that imposes another protocol over sockets. What Flash supports is not really sockets, so to say it is better is just silly. Perhaps compare Flash “sockets” with Silverlight WCF Duplex then.
Deplyment: You are two versions out of date with your Silverlight deployment information. Silverlight requires one thing: a .xap file. The .js file is a helper just like the flash helpers out there. The .xap file is conceptually similar to a .swf, but is easily inspectable as it is based on the standard zip file format. The two are equal here with Silverlight having an ever so slight edge in that you can inspect the deployment package and alter config files and whatnot without resorting to a proprietary tool.
Windows app: Most silverlight 2 code can be compiled as WPF with minimal changes. Not exactly a hands-off process though. In Silverlight 3, we have cross-platform desktop application support. Similarly, Adobe has AIR. Not sure why that was left out of your comparison. If you want a windows-only solution, there are free solutions out there that host Silverlight apps out of browser in windows with no code changes.
Streaming: Silverlight 3 also support IIS Smooth Streaming.
You also forgot things like hardware acceleration, easing, keyframe animation, behaviors, true multithreading, simple network access for SOAP, WCF, REST, JSON and other services, the 3d transformations and pixel shaders available in Silverlight 3, the awesome Blend tooling which truly integrates design and development for good round-tripping and many other things. You can also build Silverlight applications using free tools on Windows, Linux and Mac OSX (Eclipse4SL).
While it’s hard to put together a good comparison between the two products, it’s obvious to me that you didn’t even try. Anyone who thinks this is non-biased simply didn’t do their homework.
Pete
May 9th, 2009 8:13 pmFWIW, this article is *so* bad that I would actually like to see it pulled. It does neither technology any justice.
Au
May 9th, 2009 8:16 pmJeff Putz said ” Silverlight is absolutely not suitable for use on home pages. ”
You say that like Flash IS suitable to be a home page. Flash Web site, despite how often it is misused for this purpose. Web = hypertext, Flash is not hypertext.
Silverlight is based on Xaml and is a reduced set of Microsoft’s WPF (Windows Presentation Foundation) application technology. Silverlight is just getting started. WPF is amazing compared to previous application technologies in its power, ease of use and fine graphics detail. Adding a hardware-accelerated pixel shader is as simple as adding an XML tag in a Xaml document. Latest demo I saw was a working 2-D control (a textbox) mapped onto a 3-D surface. When it can’t be hardware accelerated, it falls back to software rendering.
These technologies will make it into Silverlight when it matures (3.0 due out this fall). The only thing slowing it down is making sure everything works cross platform (Linux / Windows, Mac).
Flash will have a challenge ahead.
Many more of the technologies in WPF will make its way to Silverlight, just give it time.
…and yes, Silverlight technologies do work on Linux. Use “Moonlight”, the open source linux implementation.
Windie Chai
May 9th, 2009 8:56 pmSilverlight deployment is simple as flash, flash file is a swf file, silverlight file is a xap file, why flash is better?
And Silverlight can play as a windows application like flash in silverlight 3.
Scott Barnes
May 9th, 2009 9:04 pmThis entire article has had shallow research on both platforms. I actually find myself disagreeing with majority of the points on both platforms not just the one i look after.
I’d ask that the author reach out more to the owners of both brands to get a more detailed perspective in future – as clearly the comments beneath the article indicate folks are in vocal disagreement.
-
Scott Barnes
Rich Platforms Product Manager
Microsoft.
Dude
May 9th, 2009 9:08 pmNote: Silverlight 3 is not released. So stop talking like Silverlight 3′s features are currently available. They won’t be for at least another 4-6 months.
ANaimi
May 9th, 2009 9:23 pmExtremely poor article. A lot of false information and representation, many vital points are missing.
Pete
May 9th, 2009 9:52 pm@Dude
Silverlight 3 will be out “this summer” and is currently available in public beta. Otherwise, point taken. Even if you compare Silverlight 2 to the current version of Flash, this article doesn’t even come close to getting the facts straight on either side. It compares parts of the September 2007 release of Silverlight (Silverlight 1) with info from the Silverlight 1.1 alpha of May 2007 against some old release of Flash that didn’t support h.264.
Silverlight 2 was released to production in October 2008.
darrellp
May 9th, 2009 10:11 pmI think the article was not bad. It missed stuff on both sides – the biggest is it’s totally mistaken claim that SL isn’t compressed and requires deployment of several files. It is compressed and requires deployment of precisely one .xam file which is just a .zip file with different extension. My personal take is that flash has the better animation stuff and if you only need light programming and heavy animation it’s probably the way to go. For heavy lifting on the programming side, I’ve used both Flash and SL and C# is a much better language in a much better IDE for heavy programming than ActionScript. And if you don’t like it, use C++ or IronRuby or IronPython or J++ or F# or… There’s just no comparison when you’re comparing languages, especially when it’s a large family of languages for Silverlight vs. only one (ActionScript) for Flash. Also, Flash has been around for a LONG time which is good for it’s market penetration – definitely a point in its favor, but all these technical issues like Webcam, etc. – SL has come a long way in a short time and I can certainly expect that it will have all or most of them very shortly.
Jasvinder Singh
May 9th, 2009 10:43 pmNice article.
Expecting some more article and resources on silverlight. Specially for designers
Brian Houston
May 9th, 2009 11:24 pmThat MS is given equal footing on Smashingmagazine – with their latest FUD encrusted crappy copycat “embrace and extend” technology – is quite dissapointing.
Do not fall into the Microsoft patent trap. I smell MS payola in some of the comments here as well.
Please f-off and die Microsoft – I for one remember J++, Internet Explorer 6, and no inclusion of Java runtime.
Mario
May 9th, 2009 11:51 pmI wonder why such a stories never change…
Which is born before? The chicken or the hen?
It seems that the comparison (and most of the comments) arise fron the radical hating for MS (as the richest Co), but not from objective reviews, instead.
Techinacally speaking, I would have strongly separated WHO is using this kind of techonologies: I guess that SmashingMagazine is most a web-deisgner community, so the Flash solution will be always appreciated…no doubt!
I am a desktop developer (not a web one), having LOB solutions in mind. I surely find better to share the same sources between desktop and web…the market uses MS at most: why have I to drive crazy developing in two-three different languages?…The costs are absolutely out of target…
As a huge estimator of WPF, I still haven’t see anything similar as a compromise of: simplicity, realibility, flexibility and economy…anyway, I am ready to change my opinion…
This is an HUGE impacting factor when developing a commercial solution!
For the “crucial” choice between MS or “anyone else”…
Adobe isn’t a saint: the Co. value is 1/10 the MS, but it is among the most powerful in the world…PDF, Flash, PS are proprietary formats, even “open”…what does mean “open”?
As for me “open” hasn’t any particular meaning, because I must think that about 100% of customers do knows “PDF” as document format, have “Flash” installed (shipped with Win) and (probably) a PS-driver printer…
So, please…tend to make reviews, comparisons and comments adherent to an objective point of view.
Cheers
user2393
May 10th, 2009 12:15 amJust repeat:
“it is simple
after all my effort given to flash doubtlessly i will stick with it
no matter what silverlight or “goldenlight” might be”
Ian Smith
May 10th, 2009 12:35 am@Pete Silverlight 3 cannot be used for any live applications today, and is therefore entirely irrelevant to this comparison. There is not even a “go live” license for the beta of this product that’s available and the history of Microsoft announcements that use vague release dates like “this Summer” hardly sets any kind of precedent for believing it or basing any kind of decision on whether to use it for work being undertaken today.
The article is (and should be) comparing what can be done (and released on the web) with products TODAY. Silverlight 3 CANNOT be used today to release anything on the web, so is irrelevant to the comparison.
That being said, I agree that the article is unfair to both sides. But you only have to look at the replies here to realise that whilst those dissing the article for poor research and facts are equally culpable in their replies!
Byakkun
May 10th, 2009 12:42 amIt is really not fair to not mention moonlight because, imho, it will be (starting with version 2.0) a better silverlight on linux than the linux flash plug-in compared with the flash plug-ins for the other platforms.
Silverlight 3.0 and Moonlight 2.0/3.0 will be not only an alternative to flash but also to Adobe Air on all platforms. Also Moonlight will probably be a nicer enviroment for making iPhone apps than Objective-J and the tools from the SDK if Apple plays nice.
Adam Cernik
May 10th, 2009 1:21 amUsing MIcrosoft? Of course!!! But only in jokes.
jptaranto
May 10th, 2009 1:23 amI find it completely scary that a reputable design site is even considering the benefits of Silverlight. It’s Flash competition just for the sake of it. Just like Zune, they are doing something just so they can be seen to be competing in events they’ll never win.
The only thing Microsoft has given the online community was IE 5 for mac. Since then it has only brought us down by providing incredibly poor products and forcing them upon the world. IE 6, 7 and 8 are all far below par and are holding back the entire development of the web. Anyone who actually designs and builds for the web knows this.
The sooner Microsoft is dead the better. You can assist this process by not ever using their software and advising those around you to do the same.
Bishoy Labib
May 10th, 2009 1:23 amI have a note on the file size issue.
Starting from Silverlight 2.0 it generates a .xap file which is actually a zip file that you can extract the various project files from, including .NET assemblies that contains xaml files.
This means that the non compression technique discussed above is not valid on Silverlight versions 2.0 and later.
Niraj
May 10th, 2009 1:30 amthe author should have compared flash and silverlight in terms of server push too
gaurav
May 10th, 2009 1:30 amgood one! this time
i m bored with logo n other graphics posts
bassem zaitoun
May 10th, 2009 2:36 amVery useful article ya Muhammad
Randy
May 10th, 2009 2:43 amI’m not sure about the exact stats, but surely php is a more commenly server technology, so surely this is a pretty good reason to use flash. MS servers cost alot more money to host on, most clients would be turned off by this.
tareq
May 10th, 2009 2:47 amflash is the best for me