Re: Silverlight Deep linking and redirections

2010-10-28 Thread Perry Stathopoulos
I came across the same problem with my site. The inpage anchor hash (#) is 
client side thing, that only browser handles.

Javascript is the only solution. This is the script I use:
var s = window.location.protocol + '//' + window.location.host + '/#' + 
window.location.pathname;
window.location.href  = s;

As to why you need this, is because of SEO. Google/Bing will not index urls 
with the hash. So I have my pages as http://domain.com/level1/level2 which are 
indexed in Google/Bing. This is an actual page, but if the user has Silverlight 
I redirect them with javascript to http://domain.com/#/level1/level2 . So my 
MVC urls match my Silverlight urls.

Hope this helps,
Perry


From: John OBrien 
Sent: Thursday, October 28, 2010 4:14 AM
To: ozsilverlight@ozsilverlight.com 
Subject: RE: Silverlight Deep linking and redirections

Simon,
You are correct, the hash portion of the request is not sent to the server at 
all, no server side solution is going to solve this for you.
The solution would be a small peice of javascript hosted on the domain you 
don't want people to use redirecting to the new domain. Let me know if you'd 
like me to find this script, I've used it before on some ajax sites.

I am wondering why you need this functionality, the only scenario I can think 
of is that you have changed a domain name and need to redirect users with saved 
bookmarks to the new domain. Probably why others here havn't come across this 
before?
John. 



From: j...@soulsolutions.com.au
To: ozsilverlight@ozsilverlight.com
Subject: RE: Silverlight Deep linking and redirections
Date: Thu, 28 Oct 2010 11:40:15 +1000

I'm havn't tested the anchor Simon, pretty easy to test for you tonight if you 
like. Back to your solution to the problem, are you getting the anchor in your 
Request.Url.ToString()?
 
Good post here from Rick explaining ASP.NET paths:
http://www.west-wind.com/weblog/posts/132081.aspx
 
1st check the anchor is being set in that location header, fiddler is an 
awesome tool to check this, 2nd I guess check that this technique (301 
redirect) supports anchors in all browsers.
John.
 


Subject: RE: Silverlight Deep linking and redirections
Date: Thu, 28 Oct 2010 11:28:54 +1000
From: simon.ham...@michaelhill.com.au
To: ozsilverlight@ozsilverlight.com


Thanks John,



Do you know if this method will preserve the anchor (eg. #screen) or only the 
path/parameters?



My current method preserves the path/parameters, but not the anchor.



Simon.






From: John OBrien [mailto:j...@soulsolutions.com.au] 
Sent: Thursday, 28 October 2010 11:09 AM
To: ozsilverlight@ozsilverlight.com
Subject: RE: Silverlight Deep linking and redirections



Do you have the option to do this in IIS instead? IIS6/7 both have a simple 
mechnism to do the redirect and preserve the path/parameters. Do a quick search 
if this is an option, we use for the typical www redirections.
 




Subject: Silverlight Deep linking and redirections
Date: Thu, 28 Oct 2010 11:02:40 +1000
From: simon.ham...@michaelhill.com.au
To: ozsilverlight@ozsilverlight.com

Hi all,



Currently trying to setup some redirections on a Silverlight site that uses 
deep linking.  I’m attempting to do this via a 301 redirect in the via the 
Global.asax.



The issue is that the deep linking (anchors) gets lost with the redirection.



Eg.  Say we are attempting to redirect http://www.abc.com.au to 
http://www.abc.com.  Attempting to navigate to http://www.abc.com.au/#screen is 
redirecting to the default page of http://www.abc.com rather than 
http://www.abc.com/#screen . 



I can’t see that the deep link (anchor) part is available from Global.asax, 
meaning I can’t use it in the redirect.  My redirection code in global.asax 
looks like this:-



protected void Application_BeginRequest(object sender, EventArgs e)

{

if 
(HttpContext.Current.Request.Url.ToString().ToLower().Contains("www.abc.com.au"))

{

HttpContext.Current.Response.Status =

"301 Moved Permanently";

HttpContext.Current.Response.AddHeader("Location",

Request.Url.ToString().ToLower().Replace(

"www.abc.com.au",

"www.abc.com"));

}

}



Has anyone had experience with this or can point me in the right direction?



Cheers

Simon Hammer.


___ ozsilverlight mailing list 
ozsilverlight@ozsilverlight.com 
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight 
__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/ema

Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic

2010-09-14 Thread Perry Stathopoulos
They is Microsoft. 
I don’t work for MS, so I don’t not its internals, however I’ve worked for 
several large corporations and I’m all too familiar with 
inter-department/division power struggles. This is nothing new. 

Realistically I’m sure each division is given its budget, timelines and 
deliverables. That is decided at higher level, which each division must try to 
influence the decision maker to get what he/she wants. Again nothing new here.

As outsiders, we can try to influence the decisions that MS takes. Priorities 
change in corporations all the time in response to market conditions and 
customer demands, again nothing new. However, I keep thinking about this quote: 
"If I had asked my customers what they wanted, they would have said a faster 
horse." -Henry Ford

Don’t get me wrong I love SL especially compared to Flash. However HTML does 
have many advantages. I’m in upper management for a web based company, with 
tens of millions of visitors per day. So, I have a very good idea of what is 
going on in the web world including mobile web and what is required to make 
things work at the speed of Internet. 

In the Intranet world, things are very different there. MS pretty much owns 
that, but on the Internet, far from it. IMO that distinction is often not 
talked about. There are many things that I would do on a company’s intranet, 
that should simply never be done on a public Internet (think latency and 
network speed you pour Aussies ;-p)

While the official HTML5 spec is a long way to being ratified, it’s already 
here. With IE9, all major browsers will support many of the major HTML5 
elements. So yes Microsoft is investing in HTML5 because it wants to be taken 
as a serious Internet player.


From: Scott Barnes 
Sent: Tuesday, September 14, 2010 10:05 PM
To: ozSilverlight 
Cc: ozSilverlight 
Subject: Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic

Whe u say "they" who are u referring to? Developer division or ie / windows 
team? And who has right of way in terms of budgets and launch timelines? Msft 
has loads of money but if you have ever sat in a review of the business etc u 
will note that being held fiscally accountable is very important.

200+ devs are on sl today how many do u think work on IE? Or the variety of 
tooling and also how do u justify the double ups between sl and html5 espec 
when the later hasn't got an audience really defined yet? Where do u put your 
$100 spends etc? Who foots the bill on marketing it all? Windows? Office? 
Vstudio? Expression? Do u know expression teams don't report to the same org 
tree as silverlight teams do?

It's great to say "do both" but sit down crunch the numbers and factor in 
divisional politics and welcome to he internal reality of Microsoft 


--
Sent from my mini iPad nano 
(excuse my spilling and grammar as I have giant man like fingers and this 
device as small keys)

On 15/09/2010, at 11:50 AM, "Perry Stathopoulos"  wrote:


  First, everyone should also read Mike Taulty’s post:
  
http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2010/09/10/iphone-4-is-dead.aspx
 

  Another thing that I didn’t see too much in all this hoopla is talking about 
the obvious that Silverlight is reaching maturity (not end of life, but normal 
development cycles vs. double time). MS arrived late to the party in online 
video streaming. IE is nothing but a punching bag online, so they need to step 
it up if they want to be taken seriously as an online leader. They surely don’t 
want to be late again with HTML5. Yes it makes sense to invest heavily early in 
this new shiny object, lest they arrive late again.


  From: Jordan Knight 
  Sent: Tuesday, September 14, 2010 9:17 PM
  To: ozSilverlight 
  Subject: Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic

  I'd also like to raise some points RE HTML5 and WPF/SL etc.  

  Back in the 1890's the head of the US patent office declared he was going to 
close the office because he thought that there was nothing left to invent... 
rather short sighted given hindsight...

  My point is that HTML5 will bring to the masses through standardisation the 
features that consumers have come to demand thanks to agile plugins like SL and 
Flash. To quote the SL team blog post that flamed the debate - SL/Flash 
trailblaze and HTML5 will then pave the road. These features are already out 
there and pervasive (demanded) - so why not standardise and give them the 
ultimate reach they deserve! Bravo - it's a really good idea, and consumers 
win. The stuff that was around years ago will now be available through 
standards. 

  But there is new stuff now... that stuff has been done - tech moves on.

  Where consumers *also* win is that SL and Flash are all about ideas and tech 
that doesn't/didn't exist yet + getting it to market fast. It's a playground 
for great ideas. 3D video. Surround sound, ada

Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic

2010-09-14 Thread Perry Stathopoulos
First, everyone should also read Mike Taulty’s post:
http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2010/09/10/iphone-4-is-dead.aspx
 

Another thing that I didn’t see too much in all this hoopla is talking about 
the obvious that Silverlight is reaching maturity (not end of life, but normal 
development cycles vs. double time). MS arrived late to the party in online 
video streaming. IE is nothing but a punching bag online, so they need to step 
it up if they want to be taken seriously as an online leader. They surely don’t 
want to be late again with HTML5. Yes it makes sense to invest heavily early in 
this new shiny object, lest they arrive late again.


From: Jordan Knight 
Sent: Tuesday, September 14, 2010 9:17 PM
To: ozSilverlight 
Subject: Re: Interesting article re: WPF/Silverlight/HTML5 on riagenic

I'd also like to raise some points RE HTML5 and WPF/SL etc.  

Back in the 1890's the head of the US patent office declared he was going to 
close the office because he thought that there was nothing left to invent... 
rather short sighted given hindsight...

My point is that HTML5 will bring to the masses through standardisation the 
features that consumers have come to demand thanks to agile plugins like SL and 
Flash. To quote the SL team blog post that flamed the debate - SL/Flash 
trailblaze and HTML5 will then pave the road. These features are already out 
there and pervasive (demanded) - so why not standardise and give them the 
ultimate reach they deserve! Bravo - it's a really good idea, and consumers 
win. The stuff that was around years ago will now be available through 
standards. 

But there is new stuff now... that stuff has been done - tech moves on.

Where consumers *also* win is that SL and Flash are all about ideas and tech 
that doesn't/didn't exist yet + getting it to market fast. It's a playground 
for great ideas. 3D video. Surround sound, adaptive smooth streaming (for the 
SL = video zealots). Multitouch, multi screen, multi bloody everything. Rapid 
development (through Des/Dev workflows) + awesome tooling. 

Consumers like apps too remember. They would much rather read their EPG in an 
app than have a link to a web page on their desktop. 

And what about other ideas that don't really exist yet. To say that WPF is dead 
and/or dying - well I say to you - there is more to the world of UX and 
consumerism than just the browser/current thinking. I think that WPF is _still_ 
ahead of its time. Tech/devices are moving way too fast for HTML5 spec to 
keep up with (what about this cheap new device? 
http://www.engadget.com/2010/09/13/microsoft-principal-researcher-bill-buxton-surface-will-be-in-h/)...

I think the HTML5 vs the world debate is forgetting about the consumer 
app/hi-tech/new shiny device market - it will/(*is*) be hooge! And we need 
to keep the consumers happy (which means being nimble!).

HTML5 is great, bringing what we demand to spec. Yaay for Vimeo working on my 
iPhone! Plugins are great bringing us the latest tech quickly. And... as new 
screens are added (Surface, phones etc)... then you can be sure i'll be betting 
the farm on ripping out apps quickly on tech like WPF... 

Cheap Surfaces, every shop... WPF = killer.

My 2 cents :)


On Tue, Sep 14, 2010 at 9:01 PM, Tatham Oddie  wrote:

  Even as the web standards zealot in the corner, I wouldn’t agree with many of 
Scott’s points.



  Jordan Knight and I just discussed the relationship between HTML5 and 
Silverlight across two episodes of Frankly Speaking:



  http://www.noisetosignal.com.au/franklyspeaking/?p=256

  http://www.noisetosignal.com.au/franklyspeaking/?p=260



  --

  Tatham Oddie

  au mob: +61 414 275 989, us cell: +1 213 280 9140, skype: tathamoddie

  If you’re printing this email, you’re doing it wrong. This is a computer, not 
a typewriter.



  From: ozsilverlight-boun...@ozsilverlight.com 
[mailto:ozsilverlight-boun...@ozsilverlight.com] On Behalf Of 
danlaz...@arcamis.com
  Sent: Tuesday, 14 September 2010 6:33 PM
  To: ozSilverlight
  Subject: Interesting article re: WPF/Silverlight/HTML5 on riagenic



  Via CodeProject 'Daily News' (14/09/2010) -  
http://www.riagenic.com/archives/363



  Dr. Dan Lazner, PhD | Software Architect/Engineer/Developer




  ___
  ozsilverlight mailing list
  ozsilverlight@ozsilverlight.com
  http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight






___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: Who is using Silverlight?

2010-07-26 Thread Perry Stathopoulos
Well you have NetFlix on demand in the US that uses Silverlight exclusively for 
their online streaming. The Beijing and Vancouver Olympics were using 
Silverlight exclusively for NBC and CTV networks in US and Canada respectively. 
You then have the showcase here to take a look at:
http://www.silverlight.net/showcase/


From: Greg Harris 
Sent: Monday, July 26, 2010 9:31 PM
To: ozsilverlight@ozsilverlight.com 
Subject: Who is using Silverlight?

Hi Everybody,

I am putting together a presentation on Silverlight for managers, basically a 
“why you should not be afraid of using this technology”.
There is one area that I am missing information on, that is who is using 
Silverlight.

Question for the group: 
• Who is using Silverlight in Australia? / Overseas?
• What for?
• Is there public information available about the project?

My interest is more focused on real business applications rather than just cute 
show off the user interface technology.

Thanks
Greg Harris




___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: VHDs in Windows 7 (was RE: Silverlight 4)

2010-04-16 Thread Perry Stathopoulos
Hmmm you can look at it another way: use one word instead of a phrase. Using 
dogfood as one word to describe "the act of using software that you build" (my 
own definition). So in essence this made up word is used in place of a phrase.

What I find interesting is you did the same thing with verbising. You made up a 
word (so says the red squiggly line), and gave it a definition, so that you 
could re-use it again later in another sentence. You could have of course just 
used your definition both times. 

Aren't you guilty of a similar offense? ;-p

/Greg don't take offense, I just find it interesting enough to comment.



From: Greg Keogh 
Sent: Friday, April 16, 2010 2:35 AM
To: 'ozSilverlight' 
Subject: RE: VHDs in Windows 7 (was RE: Silverlight 4)


It's cool huh. I used to use this a lot when i was in Microsoft as given i used 
to dogfood a lot of software for the company

 

Aha! This is the third time I've seen that word used like that in the last week 
(and I refuse to lookup what it means). This is the tip of the terrible iceberg 
of "verbising" (turning nouns into verbs). It's an American disease that is 
spreading, we must start an international drive to eradicate it.

 

Soon we'll have 1984 newspeak like "After 5pm I'm going to glass some wine, 
chair myself and hobbyise some code". Or "I was walking the garden this morning 
and I lost my footage and fell over" (that's not quite verbising, but I'm 
hearing more of this sort of thing recently). 

 

Greg

 






___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: VHDs in Windows 7 (was RE: Silverlight 4)

2010-04-16 Thread Perry Stathopoulos
Hmmm you can look at it another way: use one word instead of a phrase. Using 
dogfood as one word to describe "the act of using software that you build" (my 
own definition). So in essence this made up word is used in place of a phrase.

What I find interesting is you did the same thing with verbising. You made up a 
word (so says the red squiggly line), and gave it a definition, so that you 
could re-use it again later in another sentence. You could have of course just 
used your definition both times. 

Aren't you guilty of a similar offense? ;-p

/Greg don't take offense, I just find it interesting enough to comment.



From: Greg Keogh 
Sent: Friday, April 16, 2010 2:35 AM
To: 'ozSilverlight' 
Subject: RE: VHDs in Windows 7 (was RE: Silverlight 4)


It's cool huh. I used to use this a lot when i was in Microsoft as given i used 
to dogfood a lot of software for the company

 

Aha! This is the third time I've seen that word used like that in the last week 
(and I refuse to lookup what it means). This is the tip of the terrible iceberg 
of "verbising" (turning nouns into verbs). It's an American disease that is 
spreading, we must start an international drive to eradicate it.

 

Soon we'll have 1984 newspeak like "After 5pm I'm going to glass some wine, 
chair myself and hobbyise some code". Or "I was walking the garden this morning 
and I lost my footage and fell over" (that's not quite verbising, but I'm 
hearing more of this sort of thing recently). 

 

Greg

 






___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight
___
ozsilverlight mailing list
ozsilverlight@ozsilverlight.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozsilverlight


Re: SEO in SL3

2009-07-13 Thread Perry Stathopoulos
I'm thinking it has more to do with .NET RIA Services. Take a look at this:
http://blogs.msdn.com/brada/archive/2009/03/25/silverlight-3-and-seo.aspx

Ross, please share if you find a better way.



From: Jonathan Parker 
Sent: Monday, July 13, 2009 10:31 PM
To: ozsilverlight@ozsilverlight.com 
Subject: Re: SEO in SL3


>From what I gather it's basically saying that by using dynamic data with 
>hyperlinks to an asp.net page that has your silverlight app on it you can do 
>SEO+deep linking with SL3.


On Tue, Jul 14, 2009 at 12:14 PM, Ross Jempson 
 wrote:

  I am investigating how to best do SEO in SL3.



  I have seen the following quoted 100’s of times all over the web, but none of 
the authors  have elaborated on the specifics :



  “By utilizing business objects on the server, together with ASP.NET controls 
and site maps, users can automatically mirror database-driven RIA content into 
HTML that is easily indexed by the leading search engines.”



  Does anyone know of any resources that elaborate on such techniques? 


--
  Support procedure: https://www.codify.com/lists/support
  List address: ozsilverlight@ozsilverlight.com
  Subscribe: ozsilverlight-subscr...@ozsilverlight.com
  Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
  List FAQ: http://www.codify.com/lists/ozsilverlight
  Other lists you might want to join: http://www.codify.com/lists 



Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists 

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



Re: Happy Silverlight / Expression 3 Day all :)

2009-07-10 Thread Perry Stathopoulos
Congrats for the release!

My only real complaint at this point, is that I would have liked to have a 
better visibility for the release schedule. I have to admit I was not expecting 
the July 10th release. Sure there were hints, but I needed a summer release so 
I didn't focus at all on SL3. I even asked the question in this mailing list, 
when the rumours first appeared.

For example I like when Tim Hueur posted the roadmap for .NET RIA Services:
http://timheuer.com/blog/archive/2009/06/09/ria-services-roadmap-updated.aspx

Talk to the community if dates change I think we are quite open and 
understanding as we go through the same stuff.

Thanks and keep up the good work,
Perry



From: Scott Barnes 
Sent: Friday, July 10, 2009 10:55 AM
To: ozsilverlight@ozsilverlight.com 
Subject: Happy Silverlight / Expression 3 Day all :)


Now you all know why i'm home for a month :) a nice break from lead up to 
launch.

Anyway, Happy Silverlight / Expression 3 Day :) (Same day as my sons birthday 
w00t).

Http://www.microsoft.com/silverlight - feedback welcomed on all our sites, 
approach to launch etc as i will be keen to learn from our wins and mistakes 
for SL4.

Note: 
None of the website(s) or online experiences were handled by me, but as of 
Monday i'll be taking over them, so please please give me raw feedback.




Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists 

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



Re: Silverlight 3 to be released July 10

2009-06-01 Thread Perry Stathopoulos
Well that sucks as a comment...unless the smiley is meant as a wink to mean 
that it's true but you can't say.


From: Scott Barnes 
Sent: Monday, June 01, 2009 1:19 PM
To: ozsilverlight@ozsilverlight.com 
Subject: RE: Silverlight 3 to be released July 10


No comment J

 

--

Scott Barnes 
Rich Platforms Product Manager

Microsoft Corp. | Blog: http://blogs.msdn.com/msmossyblog | Office: +1 (425) 
5382410 X82410

Twitter: twitter.com/mossyblog | MSN: spidaw...@hotmail.com
P Please consider your environmental responsibility before printing this e-mail

 

 

 

From: ozsilverlight@ozsilverlight.com [mailto:ozsilverli...@ozsilverlight.com] 
On Behalf Of Perry Stathopoulos
Sent: Friday, May 29, 2009 9:07 AM
To: ozsilverlight@ozsilverlight.com
Subject: Silverlight 3 to be released July 10

 

Ars Technica is reporting that SL3 and Expression Studio 3 are launching July 
10. If that is true that great news!

http://arstechnica.com/microsoft/news/2009/05/silverlight-3-and-expression-studio-3-launching-july-10.ars

 

Why isn't there more buzz about this? From what I have seen none of the regular 
Silverlight bloggers are talking about this. I would think this is a big deal?!?

http://silverlight.net/blogs/silverlight/

 

Can we get some kind of confirmation or denial? Anyone know anything about this?

 

Perry




Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists 

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



Silverlight 3 to be released July 10

2009-06-01 Thread Perry Stathopoulos
Ars Technica is reporting that SL3 and Expression Studio 3 are launching July 
10. If that is true that great news!
http://arstechnica.com/microsoft/news/2009/05/silverlight-3-and-expression-studio-3-launching-july-10.ars

Why isn't there more buzz about this? From what I have seen none of the regular 
Silverlight bloggers are talking about this. I would think this is a big deal?!?
http://silverlight.net/blogs/silverlight/

Can we get some kind of confirmation or denial? Anyone know anything about this?

Perry
Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists



Re: Blend 3

2009-03-20 Thread Perry Stathopoulos
The only thing I heard, is that it will be released before the end of year 2009.


From: .net noobie 
Sent: Friday, March 20, 2009 8:54 PM
To: ozsilverlight@ozsilverlight.com 
Subject: Re: Blend 3


anyone heard any rumors when SL 3 will be released?


On Fri, Mar 20, 2009 at 1:40 AM, Jonas Follesø  wrote:

  They already exist - three nicely looking "hand drawn" themes for prototyping.

  http://www.nikhilk.net/Silverlight-Themes.aspx
  http://blogs.msdn.com/corrinab/archive/2008/03/24/a-new-control-skin-set.aspx

  - Jonas 



  On Thu, Mar 19, 2009 at 12:06 PM, Gilbert Corrales  
wrote:

yeah, not shipping SketchFlow after last night's demo was a bummer, it was 
just like Adobe when they showed FC for the first time...

but of well I guess at least maybe someone could come up with a theme for 
the wireframe like controls... then maybe we could have a reason to do 
interactive prototypes with code ;-) 




On Thu, Mar 19, 2009 at 7:28 PM, Perry Stathopoulos  
wrote:

  I installed Blend 3 and you can have it side-by-side with Blend 2. I 
uninstalled it however, because I wanted to try out the SketchFlow which is not 
included in the preview of Blend 3 yet .



  From: Gilbert Corrales 
  Sent: Thursday, March 19, 2009 2:36 AM
  To: ozsilverlight@ozsilverlight.com 
  Subject: Re: Blend 3


  I don't know though if I you can have Blend 3 running side by side with 
Blend 2... from the early versions that I tried of Blend 3 no... but who knows 
maybe things have changed a bit since.



  On Thu, Mar 19, 2009 at 3:33 PM, Stephen Price 
 wrote:

Thanks for that.  


Shame that, guess I'll have to set it up on another machine. Didn't we 
go through this pain when they introduced .net 2.0. Wasn't sorted out until you 
could target a framework. *sigh*


On Thu, Mar 19, 2009 at 3:29 PM, Gilbert Corrales  
wrote:

  in the release notes says that if u open a SL2 project with Blend 3 
it will automatically upgrade the project to SL3 and this cannot be undone, so 
if u want to keep editing SL2 project u will have to do so using Blend 2.

  I installed and there are only 2 options to projects SL3 or WPF.

  Cheers,

  G.




  On Thu, Mar 19, 2009 at 3:27 PM, Stephen Price 
 wrote:

Has anyone installed Blend 3 yet and tried to edit a Silverlight 
2.0 project? 
I'm wondering if installing Blend 3 would allow me to continue 
developing on a Silverlight 2.0 project or if its an all or nothing thing going 
to Silverlight 3.0. 


From what I've read you can't have both with regards to the SDK and 
tools for VS but not sure on Blend.


thx,
Stephen


Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists 


--
  Support procedure: https://www.codify.com/lists/support
  List address: ozsilverlight@ozsilverlight.com
  Subscribe: ozsilverlight-subscr...@ozsilverlight.com
  Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
  List FAQ: http://www.codify.com/lists/ozsilverlight
  Other lists you might want to join: http://www.codify.com/lists 




Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists 


--
  Support procedure: https://www.codify.com/lists/support
  List address: ozsilverlight@ozsilverlight.com
  Subscribe: ozsilverlight-subscr...@ozsilverlight.com
  Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
  List FAQ: http://www.codify.com/lists/ozsilverlight
  Other lists you might want to join: http://www.codify.com/lists 

--
  Support procedure: https://www.codify.com/lists/support
  List address: ozsilverlight@ozsilverlight.com
  Subscribe: ozsilverlight-subscr...@ozsilverlight.com
  Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
  List FAQ: http://www.codify.com/lists/ozsilverli

Re: Blend 3

2009-03-19 Thread Perry Stathopoulos
I installed Blend 3 and you can have it side-by-side with Blend 2. I 
uninstalled it however, because I wanted to try out the SketchFlow which is not 
included in the preview of Blend 3 yet .



From: Gilbert Corrales 
Sent: Thursday, March 19, 2009 2:36 AM
To: ozsilverlight@ozsilverlight.com 
Subject: Re: Blend 3


I don't know though if I you can have Blend 3 running side by side with Blend 
2... from the early versions that I tried of Blend 3 no... but who knows maybe 
things have changed a bit since.



On Thu, Mar 19, 2009 at 3:33 PM, Stephen Price  
wrote:

  Thanks for that.  


  Shame that, guess I'll have to set it up on another machine. Didn't we go 
through this pain when they introduced .net 2.0. Wasn't sorted out until you 
could target a framework. *sigh*


  On Thu, Mar 19, 2009 at 3:29 PM, Gilbert Corrales  wrote:

in the release notes says that if u open a SL2 project with Blend 3 it will 
automatically upgrade the project to SL3 and this cannot be undone, so if u 
want to keep editing SL2 project u will have to do so using Blend 2.

I installed and there are only 2 options to projects SL3 or WPF.

Cheers,

G.




On Thu, Mar 19, 2009 at 3:27 PM, Stephen Price  
wrote:

  Has anyone installed Blend 3 yet and tried to edit a Silverlight 2.0 
project? 
  I'm wondering if installing Blend 3 would allow me to continue developing 
on a Silverlight 2.0 project or if its an all or nothing thing going to 
Silverlight 3.0. 


  From what I've read you can't have both with regards to the SDK and tools 
for VS but not sure on Blend.


  thx,
  Stephen

--
  Support procedure: https://www.codify.com/lists/support
  List address: ozsilverlight@ozsilverlight.com
  Subscribe: ozsilverlight-subscr...@ozsilverlight.com
  Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
  List FAQ: http://www.codify.com/lists/ozsilverlight
  Other lists you might want to join: http://www.codify.com/lists 



Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists 



--
  Support procedure: https://www.codify.com/lists/support
  List address: ozsilverlight@ozsilverlight.com
  Subscribe: ozsilverlight-subscr...@ozsilverlight.com
  Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
  List FAQ: http://www.codify.com/lists/ozsilverlight
  Other lists you might want to join: http://www.codify.com/lists 



Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists 

Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists

<>

RE: Layout controls

2009-01-13 Thread Perry Stathopoulos
Hi Stephen,

 

You should take a look at the Silverlight Toolkit. They offer a WrapPanel
that should do what you want.

http://www.codeplex.com/Silverlight

 

Perry

 

From: ozsilverlight@ozsilverlight.com
[mailto:ozsilverli...@ozsilverlight.com] On Behalf Of Stephen Price
Sent: Tuesday, January 13, 2009 9:28 AM
To: ozsilverlight@ozsilverlight.com
Subject: Re: Layout controls

 

Silverlight/XAML?

 

When did they introduce div tags in Xaml? :)

 

I actually like the Grid in silverlight. Your talking about asp.net right?
(God I hope so)

 

On Tue, Jan 13, 2009 at 11:12 PM, Corneliu I. Tusnea
 wrote:

You should try to use UL/LI's with a div in the LI and have the LI as
display:inline;

You can use a repeater to achieve this quite nicely.

Avoid the grid like the plague.

 

Corneliu.

 

From: ozsilverlight@ozsilverlight.com
[mailto:ozsilverli...@ozsilverlight.com] On Behalf Of Stephen Price
Sent: Wednesday, 14 January 2009 1:10 AM
To: ozsilverlight@ozsilverlight.com
Subject: Layout controls

 

Hey all, 

 

I want to dynamically add some controls (might be images or buttons, not
sure yet) to a layout panel so that it dynamically wraps them as you resize
the browser window. I seem to recall that the Stackpanel does this
automagically but then realised it doesn't. Perhaps I'm thinking back to
when I was doing WPF stuff. 

 

Is there a control for this or will I need to use a grid and some math to
pidgeonhole the images into the next available grid cell?

 

cheers,

Stephen

 

  _  

Support procedure: https://www.codify.com/lists/support
List address:  
ozsilverlight@ozsilverlight.com
Subscribe:  
ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe:  
ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ:  
http://www.codify.com/lists/ozsilverlight
Other lists you might want to join:  
http://www.codify.com/lists 

  _  

Support procedure: https://www.codify.com/lists/support
List address:  
ozsilverlight@ozsilverlight.com
Subscribe:  
ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe:  
ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ:  
http://www.codify.com/lists/ozsilverlight
Other lists you might want to join:  
http://www.codify.com/lists 

 

  _  

Support procedure: https://www.codify.com/lists/support
List address:  
ozsilverlight@ozsilverlight.com
Subscribe:  
ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe:  
ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ:  
http://www.codify.com/lists/ozsilverlight
Other lists you might want to join:  
http://www.codify.com/lists 

No virus found in this incoming message.
Checked by AVG - http://www.avg.com
Version: 8.0.176 / Virus Database: 270.10.2/1876 - Release Date: 1/13/2009
8:17 AM


Support procedure: https://www.codify.com/lists/support
List address: ozsilverlight@ozsilverlight.com
Subscribe: ozsilverlight-subscr...@ozsilverlight.com
Unsubscribe: ozsilverlight-unsubscr...@ozsilverlight.com
List FAQ: http://www.codify.com/lists/ozsilverlight
Other lists you might want to join: http://www.codify.com/lists