Re: [flexcoders] Benefits of Flash Security Model and crossdomain.xml

2006-02-13 Thread Darron J. Schall
Eric Raymond wrote: My main question is who is this model intended to protect? It's for security of LAN data when a user views a .swf from a remote website. See: http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thing No crossdomain on internal servers means the

Re: [flexcoders] JSON support?

2006-02-20 Thread Darron J. Schall
dhirshbe wrote: Is there a convenient way to generate objects in AS3 from JSON? Yes. I wrote a JSON library for AS3, but I'm not 100% when it's going to be released (it's part of a larger library that should be released soon, I think). Unofficially, I think it's going to be public in the

Re: [flexcoders] Flexbuilder 2B1: coercion error at package declaration, JSON

2006-02-24 Thread Darron J. Schall
Matt Chotin wrote: As for JSON I don't think anyone has tried it yet. Nope, it's been done. :-) I wrote a JSON library that is part of a larger AS3 library set which will be announced at FlashForward. See the earlier JSON Support thread... Usage will be as follows: // package might change

[flexcoders] JSON library now available

2006-02-28 Thread Darron J. Schall
For those interested, the JSON library is now available through the ActionScript 3 library page on the labs wiki: http://labs.macromedia.com/wiki/index.php/ActionScript_3:resources:apis:libraries#corelib If you run into any problems with it, let me know. It passed all of the unit tests, but

Re: [flexcoders] Re: JSON support?

2006-03-03 Thread Darron J. Schall
@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] wrote: dhirshbe wrote: Is there a convenient way to generate objects in AS3 from JSON? Yes. I wrote a JSON library for AS3, but I'm not 100% when it's going to be released (it's part of a larger library that should

Re: [flexcoders] AS3 Date month starting at 0?

2006-03-03 Thread Darron J. Schall
Sönke Rohde wrote: Hi, Using the AS3-Date-Class the first time I recognized that the month is starting at 0 means 0 is January. Is this the expected behaviour? Yeah - it's supposed to be like this (and has been like this for a long time). Not a bug, sorry, you'll just have to account for the

Re: [flexcoders] Questions about Thread

2006-03-06 Thread Darron J. Schall
sn197412 wrote: Hi. 1. RemoteObject doesn't make new threads, right? 2. Event makes new threads, right? 3. Which is AVM based on multi thread or thread pool (like VB) ?? The Flash Player provides a single-threaded model for code execution. Ted did a good job explaining things here:

Re: [flexcoders] Is is possible to create tabs with multipul rows?

2006-03-09 Thread Darron J. Schall
Gareth Edwards wrote: Cheers Gareth There's an example of this inside Flex By Example that I wrote: http://www.ifbin.com/news/2005/11/flex-15-multiline-tabnavigator-by.html http://www.ifbin.com/?page=xbe -d -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Reusing code blocks

2006-06-28 Thread Darron J. Schall
Yes, through the concept of base states. Build a state that has the components you want shared between multiple sub-states, then when you add a new state in Flex Builder change the Based On drop down to be the state that contains the Canvas and Accordian. -d mthielman11 wrote: Ok I have a

Re: [flexcoders] Read Local File

2006-06-30 Thread Darron J. Schall
Torey Maerz wrote: So what can I do to give my internet based application read access on the client's machine? You'll need to have the user upload the file to your server. When the upload is complete you'll then need to download the file from the server into the

Re: [flexcoders] Excel, Flex Database

2006-07-05 Thread Darron J. Schall
Yes, it's possible for Flex to load Microsoft Excel data. However, it's not easy. You have to write a custom parser for the .xls file format. You can pull the raw binary data in via URLLoader setting it's dataFormat to DataFormat.BINARY, and then parse the .xls data into something usable

<    1   2