views:

38

answers:

1

For example in C# @-quoted string literals start with @ and are enclosed in double quotation marks...

So Is there anething like @-quoted string in Actionscript?

+6  A: 

If this is AS3 then you may get somewhere by declaring your literal as an XML CDATA section and then reading it back as a string. Others have posted this on SO, to allow multiline strings in AS3. Here's a web link about it:

http://dougmccune.com/blog/2007/05/15/multi-line-strings-in-actionscript-3

HTH

stupid-phil