views:

142

answers:

4

Silverlight 3 can run out of the browser.. what extra functionality this offers for the developer.. and for the user?

+3  A: 

it allows the disconnected (no need of internet connection) use of sl application + start menu shortcut + some other things you can read about here.

jarek
A: 

It also allows for more isolated storage (25MB vs 1MB on the web). This will be nice for a lot of applications that were previously starved for space.

Steve Wortham
Those numbers are defaults, not limits. The iso storage can be increased with a call to System.IO.IsolatedStorage.IsolatedStorageFile.IncreaseQuotaTo().
James Cadd
+3  A: 

It allows the user to have a desktop experience without longlasting installations and with quick and easy removing of applications. The barrier to download, install and try an application is much lower, which is good for both, the developer and the user. The developer has greater chances to distribute it's application and the user won't miss a great app because it has a 500MB setup.exe and an one hour installing process.

dalind
A: 

More access to the keyboard (e.g. the function keys) when in out-of-browser mode since the browser is not intercepting them.

marktap