Re: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Ray Chuan
Hi, i doubt this is possible. Try separating the sub pages into separate swfs, and load them on-demand. You can then look at your server logs and see which swfs have been accessed. On 10/11/06, Sascha [EMAIL PROTECTED] wrote: Hi, My Client asked for a feature with that they can check how many

Re: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Muzak
] Logging Flash-Internal User Access? Hi, i doubt this is possible. Try separating the sub pages into separate swfs, and load them on-demand. You can then look at your server logs and see which swfs have been accessed. On 10/11/06, Sascha [EMAIL PROTECTED] wrote: Hi, My Client asked

Re: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Robert r. Sanders
I can't lend you any source, but my tip would be to setup a 'dummy' page or pages and then add getURL(dummy_page.php?section=5) or getURL(dummy_page5.html) into your flash, then the client's web server logs will show the requests and they can do whatever they want using standard log

RE: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Steven Sacks | BLITZ
It's actually pretty straightforward and easy. Here's a quick way to track page impressions with no back-end code whatsoever. Create empty (0 bytes) .txt (or .html) files and put them in a folder on the server. Have Flash loadVars the txt files and append a noCache argument with the date in

Re: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Victor Gaudioso
, October 11, 2006 10:47 AM Subject: RE: [Flashcoders] Logging Flash-Internal User Access? It's actually pretty straightforward and easy. Here's a quick way to track page impressions with no back-end code whatsoever. Create empty (0 bytes) .txt (or .html) files and put them in a folder on the server

RE: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Steven Sacks | BLITZ
There's a sucker born every minute. - P.T. Barnum -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of Victor Gaudioso Sent: Wednesday, October 11, 2006 10:55 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Logging Flash-Internal

RE: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Sascha
Of Steven Sacks | BLITZ Sent: Thursday, 12 October, 2006 02:48 To: Flashcoders mailing list Subject: RE: [Flashcoders] Logging Flash-Internal User Access? It's actually pretty straightforward and easy. Here's a quick way to track page impressions with no back-end code whatsoever. Create empty

Re: [Flashcoders] Logging Flash-Internal User Access?

2006-10-11 Thread Jason Horwitz
Go the easiest (and coincidentally the best) route with Google Analytics ... hint: ExternalInterface calls to UrchinTracker('/site/ section') will cure what ails ya and wow the client (especially if you set up usage funnels and the other goodies urchin offers). Hope this helps, Jason