[Flashcoders] Loading MC

2009-04-04 Thread Karl DeSaulniers
Hello, I was wondering if anyone can point me in the rigth direction. I have been trying for days now to figure this out. I know there is some little thing I am missing and its probably right under my nose so to speak. Here is my code: //-- // Star

Re: [Flashcoders] field value theft from flash banners and xss exploited forms, or outright malicious websites

2009-04-04 Thread Anthony Pace
< input type="text" name="email" autocomplete="off" > just realized that you would have to replace the text field in the submission form if it has autocomplete="off", and by redrawing the form getting autocomplete to work its magic and have your JS go through the testing process. Anthony Pa

[Flashcoders] field value theft from flash banners and xss exploited forms, or outright malicious websites

2009-04-04 Thread Anthony Pace
I was wondering if anyone here knew that this was possible and that it, according to some sources that this is one of the reasons it wasn't implemented in chrome: I thought of this over two years ago; yet, never did anything with it (lazy... really lazy... plus I am not criminal). Flash bann

Re: [Flashcoders] XML loading. Why file is cached, but script response is not?

2009-04-04 Thread Juan Pablo Califano
By default, most content generated by server side languages don't carry along cache information in the http response header. But you can add them manually, so the client can decide whether to use a cached copy of the resource or request a fresh one. Check this link: http://www.mnot.net/cache_docs

Re: [Flashcoders] XML loading. Why file is cached, but script response is not?

2009-04-04 Thread Paul Andrews
Because the file is a script not static text the results returned by the script could change even though the URL remains the same. Paul - Original Message - From: "Pavel Repkin" To: Sent: Saturday, April 04, 2009 6:55 AM Subject: [Flashcoders] XML loading. Why file is cached,but scri